up vote 16 down vote favorite
9
share [g+] share [fb]

I would like to have a nice template for doing this in development.

link|improve this question
feedback

5 Answers

up vote 16 down vote accepted
DBCC CHECKIDENT('TableName', RESEED, 0)
link|improve this answer
feedback

Just a word of warning with:

DBCC CHECKIDENT (MyTable, RESEED, 0)

If you did not truncate the table, and the identity column is the PK, you will get an error when reaching pre-existing identites.

For example, you have identities (3,4,5) in the table already. You then reset the identity column to 1. After the identity 2 is inserted, the next insert will try to use the identity 3, which will fail.

link|improve this answer
Your warning was exactly what I was searching for. Glad to see someone mention it here. – TheTXI Mar 19 '09 at 16:54
feedback

To set the identity to 100:

DBCC CHECKIDENT (MyTable, RESEED, 100)


Aww snap!

link|improve this answer
3  
This will mean the next identity is 101 by the way - and so "0" to reset the next inserted to "1". – Kieren Johnstone Jul 9 '10 at 7:53
@Kieren Johnstone - yes it will continue the numbering from 100, as if record 100 has just been added and so the next is 101. – Keith Jul 9 '10 at 11:55
feedback

TRUNCATE table will also EMPTY the table!!

link|improve this answer
feedback
TRUNCATE table

will reset the value to its original seed.

@Darren Kopp: aye smacks forhead

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.