On Mon, 5 Oct 2009 09:58:14 -0700, Remi <(E-Mail Removed)>
wrote:
>Not sure why this happened all of a sudden, but my autonumbering field is
>skipping numbers. Normally the numbers are generated in integers of one. But
>the field skipped from record number 6449 to 6900.
That's normal behavior. I'm guessing that you ran an Append query to add data
to the table; that will often leave a large gap like this.
An Autonumber has one purpose, and one purpose ONLY: to provide a meaningless
unique key. They're not guaranteed to be sequential, or free of gaps; they can
even become random (if you Replicate the database, say), giving you 224014225
followed by -312255618 followed by 824512436. Therefore Autonumbers should be
kept "under the hood", concealed from user view, so users won't be tempted to
assign them a meaning which they will not support.
--
John W. Vinson [MVP]
|