tags:

views:

44

answers:

1

Hi,

I have a table with a identity column. I need to reset that identity column from zero. What should i do for this.

+3  A: 

Use DBCC CHECKIDENT:

DBCC CHECKIDENT(<tablename>, RESEED, 0);
Remus Rusanu