no

How to Reseed the Identity to 0 in Mssql

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 s...

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)

Related

rdbms 6379584877411284360

Post a Comment Default Comments

item