SQL Server provides a way to reset the identity column value in a table. This article will show you how to do this in SQL Server. To reset the identity column value in a table, use the following command: SELECT COUNT(*) as Identity Column Value FROM IdentityTable; This command returns the number of rows that have had their identity column value changed.


It would be wise to first check what the current identify value is. We can use this command to do so:

For instance, if I wanted to check the next ID value of my orders table, I could use this command:

To set the value of the next ID to be 1000, I can use this command:

Note that the next value will be whatever you reseed with + 1, so in this case I set it to 999 so that the next value will be 1000.

Another thing to note is that you may need to enclose the table name in single quotes or square brackets if you are referencing by a full path, or if your table name has spaces in it. (which it really shouldn’t)