//  home   //  advanced search   //  news   //  categories   //  sql build chart   //  downloads   //  statistics
 ASP FAQ 
Home
ASP FAQ Tutorials

   8000XXXX Errors
   ASP.NET 2.0
   Classic ASP 1.0
   Databases
      Access DB & ADO
      General SQL Server & Access Articles
      MySQL
      Other Articles
      Schema Tutorials
      Sql Server 2000
      Sql Server 2005
   General Concepts
   Search Engine Optimization (SEO)

Contact Us
Site Map

Search

Web
aspfaq.com
tutorials.aspfaq.com
databases.aspfaq.com

ASP FAQ Tutorials :: Databases :: Other Articles :: Why are there gaps in my IDENTITY / AUTOINCREMENT column?


Why are there gaps in my IDENTITY / AUTOINCREMENT column?

I have seen many people wonder why (or complain that) their IDENTITY or AUTONUMBER / AUTOINCREMENT column has gaps in the sequence. Before I explain situations which can cause gaps, I'd like to express that you really shouldn't care about gaps. IDENTITY values are a surrogate row identifier, and nothing more. They should not have any meaning external to the database and/or application. You should not identify customers, for example, by a CustomerID you generated artificially. So you should not rely on there being a CustomerID #35 just because there is a CustomerID #36. Another thing people do is use this number to determine how recently a row was inserted, or compare ... if you want to track this data, store the timestamp of when the row was added (see Article #2499 and Article #2448 for information). 
 
Having said that, here are some things that can cause gaps: 
 

DML statements are aborted 
 
For example, a CONSTRAINT violation will roll back the statement. 
 
CREATE TABLE splunge 

    splungeID INT IDENTITY(1,1), 
    splungeName VARCHAR(32) NOT NULL UNIQUE 

GO 
 
SET NOCOUNT ON 
 
INSERT splunge(splungeName) SELECT 'foo' 
INSERT splunge(splungeName) SELECT 'bar' 
GO 
INSERT splunge(splungeName) SELECT 'bar' 
GO 
INSERT splunge(splungeName) SELECT 'blat' 
INSERT splunge(splungeName) SELECT 'munge' 
 
SELECT * FROM splunge 
 
DROP TABLE splunge 
GO
 
Results: 
 
Server: Msg 2627, Level 14, State 2, Line 1 
Violation of UNIQUE KEY constraint 'UQ__splunge__32E0915F'. Cannot insert duplicate key in object 'splunge'. 
The statement has been terminated. 
 
splungeID splungeName 
--------- ----------- 
1         foo 
2         bar 
4         blat 
5         munge
 

Manually rolling back a transaction 
 
Many people use error handling in their stored procedures, and if you roll back transactions that include insertion into a table with an IDENTITY column, the database removes the row from the table but doesn't reset the seed. (You could do this manually, if you really wanted to, but refer to the top of this article before deciding on that path.) 
 
CREATE TABLE splunge 

    splungeID INT IDENTITY(1,1), 
    splungeName VARCHAR(32) NOT NULL UNIQUE 

GO 
 
CREATE PROCEDURE dbo.insertSplunge 
    @splungeName VARCHAR(32) 
AS 
BEGIN 
    SET NOCOUNT ON 
     
    BEGIN TRAN 
        INSERT splunge(splungeName) 
            SELECT @splungeName 
 
        IF SCOPE_IDENTITY() = 2 
            ROLLBACK TRAN 
        ELSE 
            COMMIT TRAN 
END 
GO 
 
EXEC dbo.insertSplunge 'foo' 
EXEC dbo.insertSplunge 'bar'  
EXEC dbo.insertSplunge 'blat' 
 
SELECT * FROM splunge 
GO 
 
DROP PROC dbo.insertSplunge 
DROP TABLE splunge 
GO
 
Results: 
 
splungeID splungeName 
--------- ----------- 
1         foo 
3         blat
 

Deleting rows after the fact 
 
CREATE TABLE splunge 

    splungeID INT IDENTITY(1,1), 
    splungeName VARCHAR(32) NOT NULL UNIQUE 

GO 
 
SET NOCOUNT ON 
 
INSERT splunge(splungeName) SELECT 'foo' 
INSERT splunge(splungeName) SELECT 'bar' 
INSERT splunge(splungeName) SELECT 'blat' 
INSERT splunge(splungeName) SELECT 'munge' 
 
DELETE splunge WHERE splungeName LIKE 'b%' 
GO 
 
SELECT * FROM splunge 
GO 
 
DROP TABLE splunge 
GO
 
Results: 
 
splungeID splungeName 
--------- ----------- 
1         foo 
4         munge
 

Resetting the IDENTITY seed 
 
As Article #2237 explains, it is possible for you to change the seed of an IDENTITY column, even in cases where there is already data in the table. Here is a repro using DBCC CHECKIDENT: 
 
CREATE TABLE splunge 

    splungeID INT IDENTITY(1,1), 
    splungeName VARCHAR(32) NOT NULL UNIQUE 

GO 
 
SET NOCOUNT ON 
 
INSERT splunge(splungeName) SELECT 'foo' 
INSERT splunge(splungeName) SELECT 'bar' 
GO 
 
DBCC CHECKIDENT('splunge', RESEED, 100) 
    WITH NO_INFOMSGS 
GO 
 
INSERT splunge(splungeName) SELECT 'blat' 
INSERT splunge(splungeName) SELECT 'munge' 
 
SELECT * FROM splunge 
GO 
 
DROP TABLE splunge 
GO
 
Results: 
 
splungeID splungeName 
--------- ----------- 
1         foo 
2         bar 
101       blat 
102       munge
 

If you know of any other scenarios that can cause gaps, please let us know. If you are looking for an easy way to FIND gaps in your IDENTITY column, please see Article #2516.

Related Articles

How do I build a query with optional parameters?
How do I calculate the median in a table?
How do I create a store locator feature?
How do I deal with MEMO, TEXT, HYPERLINK, and CURRENCY columns?
How do I deal with multiple resultsets from a stored procedure?
How do I debug my SQL statements?
How do I determine if a column exists in a given table?
How do I enable or disable connection pooling?
How do I enumerate through the DSNs on a machine?
How do I find a stored procedure containing <text>?
How do I get a list of Access tables and their row counts?
How do I get the latest version of the JET OLEDB drivers?
How do I handle alphabetic paging?
How do I handle BIT / BOOLEAN columns?
How do I handle error checking in a stored procedure?
How do I ignore common words in a search?
How do I page through a recordset?
How do I present one-to-many relationships in my ASP page?
How do I prevent duplicates in a table?
How do I prevent my ASP pages from waiting for backend activity?
How do I prevent NULLs in my database from mucking up my HTML?
How do I protect my Access database (MDB file)?
How do I protect my stored procedure code?
How do I protect myself against the W32.Slammer worm?
How do I remove duplicates from a table?
How do I rename a column?
How do I retrieve a random record?
How do I return row numbers with my query?
How do I send a database query to a text file?
How do I simulate an array inside a stored procedure?
How do I solve 'Could not find installable ISAM' errors?
How do I solve 'Operation must use an updateable query' errors?
How do I temporarily disable a trigger?
How do I use a SELECT list alias in the WHERE or GROUP BY clause?
How do I use a variable in an ORDER BY clause?
Should I index my database table(s), and if so, how?
Should I store images in the database or the filesystem?
Should I use a #temp table or a @table variable?
Should I use a view, a stored procedure, or a user-defined function?
Should I use recordset iteration, or GetRows(), or GetString()?
What are all these dt_ stored procedures, and can I remove them?
What are the limitations of MS Access?
What are the limitations of MSDE?
What are the valid styles for converting datetime to string?
What datatype should I use for my character-based database columns?
What datatype should I use for numeric columns?
What does "ambiguous column name" mean?
What is this 'Multiple-step OLE DB' error?
What is wrong with 'SELECT *'?
What naming convention should I use in my database?
What should I choose for my primary key?
What should my connection string look like?
When should I use CreateObject to create my recordset objects?
Where can I get this 'Books Online' documentation?
Where do I get MSDE?
Which database platform should I use for my ASP application?
Which tool should I use: Enterprise Manager or Query Analyzer?
Why can I not 'open a database created with a previous version...'?
Why can't I access a database or text file on another server?
Why can't I use the TOP keyword?
Why do I get 'Argument data type text is invalid for argument [...]'?
Why do I get 'Not enough space on temporary disk' errors?
Why does ASP give me ActiveX errors when connecting to a database?
Should I use COALESCE() or ISNULL()?
Where can I get basic info about using stored procedures?

 

 


Created: 5/24/2004 | Last Updated: 3/12/2005 | broken links | helpful | not helpful | statistics
© Copyright 2006, UBR, Inc. All Rights Reserved. (225)

 

Copyright 1999-2006, All rights reserved.
Finding content
Finding content.  An error has occured...