We found the issue. It has to do with null values in the fields of the table being selected from that are to be inserted into the temporary table. Even though the temporary table is created to accept nulls when the insert is attempted it fails with the ISAM error. If the select is changed to do an IsNull(<fieldName>. '') the process completes without failure. There seems to be an issue with inserting nulls into temporary tables.
↧