I do not do nearly enough straight SQL these days, there is always a layer of abstraction between me and those db tables. Anyway I always forget how to reseed identity values for table. The following SQL statement ensures that the next insert on mytable will result in the seed value being 1.
DBCC CHECKIDENT (mytable, reseed, 0)
Technorati Tags: SQL Reseed,Programming Note to Self
Comments are closed.