ProgramError
Programmer
Hi all
We recently had a backend data corruption. Luckly we kept backups but not that frequently as we should have. We have managed to restaore all the records back to there original state apart from problem we are having changing a long integer field into back into a auto number field.
Let me explain a little more.
the corruption caused records to be duplicated and the key field number to be out of sequence
a simplistic example would be ...
1 2 3 4 5 6 7 8 9
suddenley became
1 2 4 5 6 2 3 7 8 9
and because of this we could not delete the problematic records unles the key field was changed from a autonumbering field to a normal long integer field.
can anyone advise how to change it to a autonumbering field?
p.s. the numbers already allocated to the records need to be kept as they are, so sequencially renumbering them is out of the question.
Ian Mayor (UK)
Program Error
Programmers do it one finger at a time!
We recently had a backend data corruption. Luckly we kept backups but not that frequently as we should have. We have managed to restaore all the records back to there original state apart from problem we are having changing a long integer field into back into a auto number field.
Let me explain a little more.
the corruption caused records to be duplicated and the key field number to be out of sequence
a simplistic example would be ...
1 2 3 4 5 6 7 8 9
suddenley became
1 2 4 5 6 2 3 7 8 9
and because of this we could not delete the problematic records unles the key field was changed from a autonumbering field to a normal long integer field.
can anyone advise how to change it to a autonumbering field?
p.s. the numbers already allocated to the records need to be kept as they are, so sequencially renumbering them is out of the question.
Ian Mayor (UK)
Program Error
Programmers do it one finger at a time!