The following line resets the Identity value for the Customer table to 0 so that the next record added starts at 1.
Syntax:
DBCC CHECKIDENT('Customer', RESEED, 0)
Visit here for more information:
Thanks :)
The following line resets the Identity value for the Customer table to 0 so that the next record added starts at 1.
Syntax:
DBCC CHECKIDENT('Customer', RESEED, 0)
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.
Hamid KhanPosted Nov 18, 2014, 11:39 PM
Thanks