Access 97 performance

G

Guillermo

Hi, can anyboydy tell me how access 97 performs within a single
table/form/query environment if the table holds about 21,000,000 (english
millions) rows, 5 columns? no indices, 1 primary key. query on primary key to
return up to a max of 100 rows.no updates.static data. retrieval only.
 
R

Rick Brandt

Guillermo said:
Hi, can anyboydy tell me how access 97 performs within a single
table/form/query environment if the table holds about 21,000,000
(english millions) rows, 5 columns? no indices, 1 primary key. query
on primary key to return up to a max of 100 rows.no updates.static
data. retrieval only.

Since there actually WILL be an index on the primary key that should perform
reasonably well.

Put another way, if the table is local and the file not unduly fragmented it
should perform about as well as on any other database engine. The primary
factor being disk access speed. If you are having to run that against a
table over a network then it would be quite a bit slower as a 21 million row
index is still a pretty large thing to have to pull over the wire.
 

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