"consolidate data from two identical databases"
i found this article for the previous issue
How to Merge Records from Two Identical Access Databases By Danny Lesandrini
however, there is step number "4" that i cannot exactly understand why and how?
1- he gave all records from site "B" database the same value for EmployeeID that is equal to the largest value in site "A" database !!. shouldn't EmployeeID be a primarykey?
- Run a simple UPDATE query to add the value, lngMaxSiteA_ID, to EmployeeID for every record at Site B tblEmployee. The Cascade Updates should propagate those changes throughout your database.
i thought he would update to lngMaxSiteA_ID + row number (or a counter)
2- how to perform such query? and how to express row number in access?