Mike C said:
Thanks for responding so quickly. I always thought 2 million records was
the limit and maybe I mistook that for the 2 gig limit. But I'm taking
over
someone else's job and the database they have been using is only 89 meg
but
there is a table in it with 2.7 million records. It's freaking me out.
Data
will continue to be dumped in there for the next 5 years or so and I'm not
comfortable with 2.7 million records in a table in case there is some kind
of
limit.
Those must be very small records! Assuming that this table actually resides
in the database, and is not linked from elsewhere, that's on the order of 32
bytes per record. Are you sure your information is correct?
The number of records itself shouldn't be a problem, so long as they're
suitably indexed for whatever you want to do with them. Without the proper
indexes, most operations on that many records will be slow. But indexes do
make a database bigger, so there's a trade-off that you must consider.
Still, I have a working database with 18.5 million records in its largest
table, all properly indexed. This is a *very* big .mdb file -- about 1.6
GB -- but it's perfectly functional.