In an MS Access 2010 application, I use this SQL statement:
SELECT myTable.field1, myTable.field2, ...
INTO temporaryTable
FROM myTable
ORDER BY myTable.field4, myTable.field3
The order of the records in temporaryTable often are not according to the definition in the ORDER clause, neither to the order in temporaryTable.
For some time now, I have tried ordering and copying tables There and Back Again to have the order clear and fixed, but it doesn't help. It also seems to be a phantom, sometimes it works, sometimes not. So I'll have to write a transparent but slow VBA workaround.
Does anybody know sth about this, is it a bug, and what is the best workaround? Did I miss a parameter to set?
Thanks in advance :-)