How to make a query run faster

neoklis

Registered User.
Local time
Today, 13:37
Joined
Mar 12, 2007
Messages
80
Hi,

I am opening a query in Access which has two linked sql tables but it takes to long to open. Can I choose a method (ADO) opening that query? If not, is there a way to speed up the process?

thanks
 
You can possbily use a passthrough query on the two linked tables, this runs the query on the database where the tables are located and simply passes the results back to you. If your query is running via VBA you can make a direct connection to the database in question and perform the query or if it is an application such as SQL server and the query is standard or simply changes a couple of parameters, write (or have the DBA for that DB write for a you) a stored procedure that you can pass the parameters to.
 

Users who are viewing this thread

Back
Top Bottom