Can I use the
DBCC CHECKIDENT(, RESEED, value)
command to reset an identity column current value to the original one in
The value can be omitted. So if you use
DBCC CHECKIDENT (, RESEED);
SQL Server sets the ident value to the correct next number - according to the numbers already in use. This is the only way to reseed identity values I know.