I\'m using this code to reset the identity on a table:
DBCC CHECKIDENT(\'TableName\', RESEED, 0)
This works fine most of the time, with the f
Change statement to
DBCC CHECKIDENT('TableName', RESEED, 1)
This will start from 2 (or 1 when you recreate table), but it will never be 0.