Using Access 2003:
The db is split between a front end/back end and in this case is querying one table called students with about 10k records
When the form is first loaded a subform in gridsheet view executes a query.
SELECT Students.State, Students.Zip, Students.ID
FROM Students
WHERE 1=2
Why does this query take about 90 secs to return no rows and cause 6-8MB of network traffic.
When using the below query it take only seconds to return results and the network traffic is barely noticeable.
SELECT Students.State, Students.Zip, Students.ID
FROM Students
WHERE lastname = "Jones"
Ultimately I'm trying to minimize the time to load the subform when this form is first opened and before the user provides their search filters.
Thanks.
The db is split between a front end/back end and in this case is querying one table called students with about 10k records
When the form is first loaded a subform in gridsheet view executes a query.
SELECT Students.State, Students.Zip, Students.ID
FROM Students
WHERE 1=2
Why does this query take about 90 secs to return no rows and cause 6-8MB of network traffic.
When using the below query it take only seconds to return results and the network traffic is barely noticeable.
SELECT Students.State, Students.Zip, Students.ID
FROM Students
WHERE lastname = "Jones"
Ultimately I'm trying to minimize the time to load the subform when this form is first opened and before the user provides their search filters.
Thanks.