Hi,
I have a table with a identity column. I need to reset that identity column from zero. What should i do for this.
Hi,
I have a table with a identity column. I need to reset that identity column from zero. What should i do for this.
Use DBCC CHECKIDENT:
DBCC CHECKIDENT(<tablename>, RESEED, 0);