Comparing two tables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I compare two identically structured tables an flag the entries that are not identical (any change in any field)?

I had a "screw-up" witht the database and want to compare the current table information to a backup copy.

Thanks

Daniel
 
I make a query of each table, then combine them in a UNION ALL query using
TOTALS and COUNT on the Primary key.

Any entry that has a one count is NOT identical.

ed

Daniel said:
How can I compare two identically structured tables an flag the entries
that are not identical (any change in any field)?
I had a "screw-up" witht the database and want to compare the current
table information to a backup copy.
 

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

Back
Top