First of a series of questions. 1. Table vs. Questions

P

Paul

Hello All,

I'm beginning to build a massive database with more than 10 tables.
Currently I have 1 database with 4 tables and 1 query linking certain info
from the tables. The query is rather slow when the number of records go
over 1000. Is there a way to speed this up when it opens? Which one would
you recommend for interactions between tables? Thank you.
 
S

Stefan Hoffmann

hi Paul,
I'm beginning to build a massive database with more than 10 tables.
Massive is something completly different :)
Currently I have 1 database with 4 tables and 1 query linking certain info
from the tables. The query is rather slow when the number of records go
over 1000. Is there a way to speed this up when it opens? Which one would
you recommend for interactions between tables? Thank you.
First of all, have all your tables primary keys?
Then add for the fields used in your query indices in the tables.

btw, what exactly is "rather slow"? Are you running the .mdb on a local
drive (what kind of drive)?


mfG
--> stefan <--
 
J

John W. Vinson

Hello All,

I'm beginning to build a massive database with more than 10 tables.

Currently I have 1 database with 4 tables and 1 query linking certain info
from the tables. The query is rather slow when the number of records go
over 1000. Is there a way to speed this up when it opens? Which one would
you recommend for interactions between tables? Thank you.

What are you doing with the query? It's rarely necessary to create One Great
Master Query linking everything in your entire database together; typically
you'll have Forms bound to one- or two-table queries for data entry, and
Reports bound to queries joining several tables, but typically retrieving only
those few records which need to be reported. Having a query joining all ten
tables and displaying all records in those tables would be very unusual
indeed!

You may want to look at Tony Toews' Performance FAQ:

http://www.granite.ab.ca/access/performancefaq.htm


John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top