P
Pat Hartman \(MVP\)
Just because you don't see a query running message doesn't mean there isn't
one. See my earlier responses. Especially the one to "Steve".
As I said in my first post, removing the order by should improve response.
Without the order by, the table will be returned by the query in an
undetermined order. The order will be approximately key sequence since
Access reorders all tables into key sequence when the database is compacted.
This fools people into thinking that their data is always stored in key
sequence which is far from the truth. NEVER depend on order unless you
specifically include an order by clause in your query.
one. See my earlier responses. Especially the one to "Steve".
As I said in my first post, removing the order by should improve response.
Without the order by, the table will be returned by the query in an
undetermined order. The order will be approximately key sequence since
Access reorders all tables into key sequence when the database is compacted.
This fools people into thinking that their data is always stored in key
sequence which is far from the truth. NEVER depend on order unless you
specifically include an order by clause in your query.