xxxxxxxxxx
DBCC CHECKIDENT ('etl.datafileprocessconfigurationdetails', RESEED, 1041)
xxxxxxxxxx
/*If you have delete all the rows in a table, and you want to reset the identity column value, use this*/
DBCC CHECKIDENT ('Table_Name',RESEED,0)
xxxxxxxxxx
USE <databasename>;
GO
DBCC CHECKIDENT ('<tablename>.<columnname>', <value>, <incrementby>);
GO