SQL Fool Adventures in SQL Tuning – a blog for the rest of us

4Nov/082

Max INT Identity Value Reached (DBCC CheckIdent)

One of my colleagues shared the following experience.

Recently, the identity column on one of his tables reached the maximum value allowable for an INT data type (2,147,483,647). Obviously, this caused all sorts of errors, as the application was unable to insert records into the table. This is a customer-facing table, so the issue needed to be resolved quickly. Converting the column to a BIGINT would require a significant amount of down-time. The solution? Reseed the identity column to -2,147,483,648 and have the values count upward toward zero. This took only seconds and the app was back up immediately. This is, of course, a temporary solution; it allows the team to schedule a more convenient time to resolve the issue.

Here's how to do this:

DBCC CHECKIDENT ('tableName', RESEED, -2147483648);

Thanks, Peter, for sharing this tip!

Tagged as: Leave a comment
Comments (2) Trackbacks (0)
  1. Actually, that would be “count upward toward zero”

  2. You’re absolutely correct! Thanks for pointing that out, I’ll update the blog post now. :)


Leave a comment


No trackbacks yet.