There are times when you want to reset the identity back to 0 before inserting records into the database.
To do that execute the following script on master database:
dbcc checkident('TableName', RESEED,0)
To do that execute the following script on master database:
dbcc checkident('TableName', RESEED,0)
Post a Comment (0)