D
David L
In Access 2003 SP2, when a record in a linked table that has an
incrementing AutoNumber primary key field has been deleted and I
retrieve the record from an earlier backup using:
INSERT INTO tblTable
SELECT * FROM tblTableBackup
WHERE ID = IDBackup;
the next record to be manually inserted in the table gets assigned a
primary key value of IDBackup + 1 rather than the expected
IDLastAllocated + 1.
I can reproduce this problem in a test database as well as the working
system.
Is this a known problem? I've not been able find anything on the web.
incrementing AutoNumber primary key field has been deleted and I
retrieve the record from an earlier backup using:
INSERT INTO tblTable
SELECT * FROM tblTableBackup
WHERE ID = IDBackup;
the next record to be manually inserted in the table gets assigned a
primary key value of IDBackup + 1 rather than the expected
IDLastAllocated + 1.
I can reproduce this problem in a test database as well as the working
system.
Is this a known problem? I've not been able find anything on the web.