The limits is not how many records, but in fact the total size of the
database.
in a2003, the max file size is 2 gig.
A typical name in a mailing list is about 160 characters.
So, if we have 1 million names in the table, then we get:
1000000 x 160 charaters = 160 million characters, or 160 meg
2 gig = 2000 meg
So, you can see that we can easily fit a million records into a single
table....
However, if we put in 10 million names, we now got 1600 meg......and that is
now approaching the limit...
Of course..you can also use ms-access as a front end to sql server..and that
has a much larger capacity...
And, of course you can put each table in a seperate mdb..and link to that
(doing this in theroy would mean you can have a file about as large as you
want..but of couse we would be talking about seperate tables).