Jaylin said:
Would very much appreciate expert advice on why it takes a minute to run a
select query, but takes forever to do Make table query on the same set
Are you going to the end of the SELECT query's Recordset? A SELECT query might
look "done", but it will show you a screen of data as soon as it has processed a
screen of data. A MakeTable query isn't done until it has processed every row.
Chances are the entire SELECT query takes just about as long if you force it to
process all rows.
There is a difference where the MakeTable actually has to write data to disk,
but you might be seeing more of a difference than what really exists.