![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Newbie
Join Date: Jun 2005
Posts: 1
Rep Power: 0
![]() |
comparing same table from 2 different .mdb files
I have two versions of .mdb file(the old and the new one). The application takes the backup of existing .mdb file and then makes any changes to the existing .mdb. This is new .mdb(with changes).
I want to see the difference between the corresponding tables from these two .mdb files. For example the .mdb files contain "Policies" table. This table may undergo changes(addition of new records, deletion of existing records, updation of existing records). I want to see the diferences the Visual SourceSafe style. Awaiting your valuable suggestions, Roger |
|
|
|
|
|
#2 |
|
Expert Programmer
|
Well in MS SQL, this should return only the rows that do not occur in both tables (i.e. differences) "SELECT * FROM table1 FULL OUTER CROSS JOIN table2". Whether it'll work with Jet is another matter!
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|