Hallo,
If the Autonumber IDs are duplicated, you obviously won't be able to use the field as a unique identifier, but you can create a new Id and use that in your new database.
If you create a UNION query, you could modify the Id to make it unique.
SELECT 2*lngStudentId as lngNewStudentId, Field2, Field3 FROM tblStudents0
UNION
SELECT 1+2*lngStudentId, Field2, Field3 FROM tblStudents1
would do it.
In this way lngNewStudentId Mod 2 would give you the number of the tblStudents table it came from and the Id within that table would be Clng(lngStudentId/2) (I think that truncates, rather than rounds)
- Frink