As a rule of thumb, access databases do not perform well if the size is greater than 50MB and there are more that 10 concurrent queries to it. This is information from MS.
If your database needs exceeds this, you should go for SQL or Oracle or other databases.
Suggestions by OMC2000 are also relevant.
Main Topics
Browse All Topics





by: OMC2000Posted on 2002-09-06 at 09:29:13ID: 7267592
the general approach is exclusion of the possible reasons of the problem:)
- check all pathes and names;
- check whether your ASP starts to work: put some test text for output without query execution;
- check whether your database is available: query something simple from a small table;
you might restrict the size of the returned recordset by setting some condition in order to check wheither the problem in database perfromance or in your query.
Also, you might consider multi page representation of the query results: output first N records and introduce Next>> <<Prev buttons for the rest