Compare 2 databases?

L

Larry

I have a database that may have some changes made to the
data. I need to compare it to a back up copy. Is there
any way to compare one db to another?

The db is in MSAccess 2000.

Thanks for any help you can give.
 
E

Ernie

Create a third database and import the tables from either
of the ones that you wish to compare, changing the table
names to identify which db they came from.

Then either import or link to the tables in the other db.

Now you can create queries for finding unmatched records
from each pair of tables in the db (queries / New / Find
unmatched). This will show you if any records were added
to the tables being compared.

If your concern is that one or more of the fields in one
or more of the tables have been changed, your query will
have to compare every field. Something like iif
(table1.field1 <> table1bkup.field1, "changed","same") in
the qbe pane should work.

Alternatively, you could just write over the newer db with
the data in the backup db. Then they will be the same.
 

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