Hi Michael,
I just add a few thoughts here. First, check the data types of the fields to
make sure that they are reasonable for the data contained in each record. For
example, if a byte will do, don't use a long integer or double to store the
same data. For text and memo fields, you can recover some space after
compacting by setting the Unicode Compression property to Yes, if it is
currently set to No.
Verify that the database design is reasonable. Perhaps there is lots of
repeated data where one could save some space by putting the unique values
into a separate table, and then using a numeric PK / FK combination to tie
the values together.
One of the major disadvantages of using multiple linked back-end files is
that there is no way to enforce referential integrity between records in one
linked database to records in a second linked database.
Tom
http://www.access.qbuilt.com/html/expert_contributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________
:
The database is over 3.8 Million records, but since I am limited on funds
and time, another program is not an option. I will break it apart and have a
front end link file.
I kept running into an error message that prevented doing any additional
queries, that is when I realized I was exceeding somekind of limit. I had
already compacted and repaired and there is only text in the records.
Thank you for the assistance,
Michael