Posted by Rahul on July 11, 2010 |
|
Easiest way to reset the identity column value in MSSQL is to use 'TRUNCATE TABLE' on the table.
This will reset the identity column value.This will work only if the table has no references made by any child.
Syntax:
truncate table TABLENAME;
use databaseName;
go
DBCC CHECKIDENT ('tableName','reseed',reseedvalue)
go
Recent Comments