Compare two table of two different access databases

1.5k views Asked by At

This question might be bit old but i'm not getting right answer when i google it .

I have two access databases one is A and another one B . Both will have same table structures and column names definitely .I want to compare data in each table and produce the result that is different from the both

I have a primary key in each tables .

Is it possible in access.Will it be fast if i have to compare total of 20000 records on whole

1

There are 1 answers

0
Yawar On BEST ANSWER

You can do a select query that pulls data from another database file:

select *
from [;DATABASE=c:\my\file.accdb].MyTable

Thus you can do joins between tables in different files and compare them.