I have two tables that are from separate mdb's that were supposed to be synchronised but there was an error and it didn't work.
One is a replica and the other is a design master. The design of the two tables is identical but there are some rows in the replica table that are not in the design master (it cannot be synchronised;long story).
There is a primary key field called ID in each table but this is randomly generated so I can't just sort each table by ID and then put the rows into the design master table that are in the replica but not in the design master.
Some of the randomly generated ID's may be the same in the design master table as they are in the replica table.
I need a union query to merge everything from the two tables but the problem is the ID's.
Any ID's (I mean ideas)?
One is a replica and the other is a design master. The design of the two tables is identical but there are some rows in the replica table that are not in the design master (it cannot be synchronised;long story).
There is a primary key field called ID in each table but this is randomly generated so I can't just sort each table by ID and then put the rows into the design master table that are in the replica but not in the design master.
Some of the randomly generated ID's may be the same in the design master table as they are in the replica table.
I need a union query to merge everything from the two tables but the problem is the ID's.
Any ID's (I mean ideas)?