How do I reset the Primary Key index to 1 using Visual Studio 2008 Server Explorer?
Thanks!
How do I reset the Primary Key index to 1 using Visual Studio 2008 Server Explorer?
Thanks!
It sounds like you have a table, with data, and you want to restart PK Identity numbering back to 1.
You'll have to delete all data and reset the seed on the identity column. This can be done all in one statement.
Create a new query by right-clicking on the database server or a table, and choose New query (or whatever command is similar):
TRUNCATE TABLE MyTable;
To reset the IDENTITY value to one, use DBCC CHECKIDENT:
DBCC CHECKIDENT (‘YOUR_TABLE_NAME_HERE’, RESEED, 1)