B
Bob Quintal
i have a database of about 5000 records. how do i take out the
old ones and store them so they are retreivable, but not in the
same database as currently being used, as it is slowing the
database down.
just 5000 records? there is something else causing the slowdown.
Perhaps you are sorting the table in your form but have not made an
index in the table that brings up the sort?
I've tables with over 300,000 records that are lightening fast.
To reply to your question, you use an append query that adds the
records meeting certain criteria to the new table (in your case, the
age of the record, or a value that says completed), then you use a
delete query on the local table that deletes the records using the
same criteria.