Appned Query Performance

  • Thread starter Thread starter Walt Herman
  • Start date Start date
W

Walt Herman

I have an Append query with approx 25000 records with 8 fields and I am
trying to append it into a static table and the performance is abysmal. Can
anyone suggest a way in which I can improve the performance? Is there a SQL
Command that might be quicker and if so, can you provide a sample of the
syntax? Many thanks in advance.

Regards,

Walt
 
I have an Append query with approx 25000 records with 8 fields and I am
trying to append it into a static table and the performance is abysmal. Can
anyone suggest a way in which I can improve the performance? Is there a SQL
Command that might be quicker and if so, can you provide a sample of the
syntax? Many thanks in advance.

Could you post the SQL? Where is the data coming from, and where is it going
to? What indexes do you have? (Indexes on the source table should speed things
up; indexes on the target table will slow things down, since Access must
update them for every row).
 
"the performance is abysmal."

Can you quantify that in the number of second, minutes, or (shudder!!) hours
that it takes?

Do you have Set Warnings turned off in code or a macro before running the
query? That can speed things up, but just don't forget to turn Set Warnings
back on afterwards.
 
Back
Top