restore a deleted record in table with autonumber field

C

Cindy

I need to restore a deleted record into a table that has an autonumber field.
The autonumber field is also the primary key, so It's imperative that the
number in the autonumber field is exactly what it used to be. I know this
can be done, but I need help. Thanks
 
K

KARL DEWEY

If you have the information then do a compact & repair. Close the database.
Open the database and append data including the number to the autonumber
field.
 
D

david

Use an Append Query to append the new record (and old autonumber
value) to the table.

If you have a FE/BE split database, open the BE to run the Append
Query, to avoid resetting / corrupting your next autonumber.

(david)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top