C
Cathy
I have an autonum field in table1 that is the relational field to table2. It
is an indexed field in table1 that will not allow duplicates, but is not the
primary key. I need to add and delete records from both table from time to
time. Recently I ran into a problem when I needed to add several records to
table1. The append query kept trying to reuse a deleted autonum and would
error out. I had to rebuild the tables to make the process move forward
again. Why would it attempt to reuse a number instead of choosing the next
highest number? Right now I don't have a lot of records so it wasn't too
much of a problem. It will be a problem if it does it again in the future.
How can I prevent this error from happening in the future?
Thank you,
Cathy
is an indexed field in table1 that will not allow duplicates, but is not the
primary key. I need to add and delete records from both table from time to
time. Recently I ran into a problem when I needed to add several records to
table1. The append query kept trying to reuse a deleted autonum and would
error out. I had to rebuild the tables to make the process move forward
again. Why would it attempt to reuse a number instead of choosing the next
highest number? Right now I don't have a lot of records so it wasn't too
much of a problem. It will be a problem if it does it again in the future.
How can I prevent this error from happening in the future?
Thank you,
Cathy