I have a table with a identity column. I need to reset that identity column from zero. What should i开发者_C百科 do for this.
Use DBCC CHECKIDENT:
DBCC CHECKIDENT(<tablename>, RESEED, 0);
I have a table with a identity column. I need to reset that identity column from zero. What should i开发者_C百科 do for this.
Use DBCC CHECKIDENT:
DBCC CHECKIDENT(<tablename>, RESEED, 0);
精彩评论