Skip to content
Time to re-align!
Home » Re-align Identity Last Value to Actual Max Value

Re-align Identity Last Value to Actual Max Value

Problem

Sometimes, when you have a table with an IDENTITY column, there could be scenarios in which weird “gaps” are created between different IDs.

There can be several possible causes for this:

  1. The most obvious cause is when rows are deleted from the table. If many rows are deleted from a table with an IDENTITY column, it’s obviously expected that nothing would “fill” up the “gaps” that these rows have left. IDENTITY values only go one way, they don’t automatically re-fill deleted values retroactively.
  2. When a ROLLBACK is performed on a transaction after inserting into a table with an IDENTITY column, the increase in the IDENTITY value is NOT rolled back. So even if the row wasn’t actually inserted, the IDENTITY value is still increased. This can happen both with single-row INSERT commands, as well as BULK insertions. So if, for whatever reason, a lot of insertions are rolled-back in your database, you may see a lot of these “gaps”.
  3. There’s a special mechanism, specifically in SQL Server 2012, which “pre-allocates” IDENTITY values for a table, and it does this in memory. So when the SQL service is restarted, next time you insert a value into the table, the IDENTITY value would “jump” by 1000 or 10000 (depending on the column data type). This happens in SQL 2012 only, and was reportedly fixed in later versions. More info about it in this blog post by Ahasan Habib.

Solution

While retroactively fixing your “gaps” may not be an easy (or even a recommended) task, it’s far more preferable to fix such “gaps” the moment you identify them at the end of your table. Let’s say, for example, that you know that you’ve just rolled back a huge insertion of new rows to your table. Or that you have SQL 2012 and have just restarted your instance, so you expect the 1000 or 10000 value jump. Or that maybe you’ve simply just deleted a whole bunch of rows from your table.

In either case, you expect the next inserted row to come with a significant IDENTITY gap.

Wouldn’t you want to, let’s call it, “re-align” your next IDENTITY value with the actual current maximum value you have in your table, and thus avoid that gap?

I personally have encountered this scenario several times. So, I wrote a script that automatically finds ALL tables with an IDENTITY column, which don’t have their next value aligned with their actual max value, and then generates a DBCC CHECKIDENTcommand to fix that discrepancy.

You can see it here:

Get in from my GitHub Gists

You can use it freely for your own benefit.

Remarks

The script I provided uses the BIGINT data type when checking the max value, so it should cover the smaller integer data types as well (INT, SMALLINT and TINYINT). But other, non-integer types may not work as well.

See Also

4 thoughts on “Re-align Identity Last Value to Actual Max Value”

  1. Hello,
    I’m curious why you refer to ‘@pResult’ in your select statement:
    “SELECT @pResult = N”DBCC CHECKIDENT(””’…… ”
    But I see no declaration for it; there is a “@Result”. So, why the p?

  2. User Avatar

    Thank you for your question, Sean. The reason for it is because I’m using sp_executesql in my script, and I declare @pResult as a parameter for that command, while sending @Result as the actual parameter for it “from outside”.

    One is the parameter name as it is declared for the ad hoc dynamic command, and the other is a different variable being used as input for the former.

    This is similar to how when you create a stored procedure, it may have a parameter called @p1, but when you execute the procedure, you might be sending a completely differently named variable (let’s say @var1) as input for the procedure parameter.

  3. Pingback: T-SQL Tuesday #131 – Database Analogies – Star Trek Candy – Eitan Blumin's Blog

  4. Pingback: T-SQL Tuesday 143 – Short Powershell code to move DB files in AlwaysOn – Eitan Blumin's Blog

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.