--View the current value:
DBCC CHECKIDENT ("{table name}", NORESEED)
--Set it to the max value plus one:
DBCC CHECKIDENT ("{table name}", RESEED)
--Set it to a spcefic value:
DBCC CHECKIDENT ("{table name}", RESEED, {New Seed Value})
Daily micro-tips for C#, SQL, performance, and scalable backend engineering.
--View the current value:
DBCC CHECKIDENT ("{table name}", NORESEED)
--Set it to the max value plus one:
DBCC CHECKIDENT ("{table name}", RESEED)
--Set it to a spcefic value:
DBCC CHECKIDENT ("{table name}", RESEED, {New Seed Value})