I was asked to create a desktop tool to compare an older access DB with a newer "updated" access DB and create an excel file of all new or altered records.
the DB tables I need to compare are structured
Primary key | Description.
I created a simple Windows form that allows the user to select the old and new databases and I figured out how to open the DB's and run SQL queries against them however I am stuck on how to do the comparison without making thousands of SQL calls to each DB.
With SQL server and a Web server I would be done by now but creating this as a desktop application and MS Access has me a bit confused.