Oct 23, 2002 #1 sgueper Programmer May 2, 2002 18 ES I Would like to initialize a column identity after deleting all records and I don't know how to do it. Thank you Silvi
I Would like to initialize a column identity after deleting all records and I don't know how to do it. Thank you Silvi
Oct 23, 2002 #2 jester777 MIS Jun 8, 2001 54 GB You use DBCC CHECKIDENT to reinitialize it. DBCC CHECKIDENT('table name', RESEED, 1) will set the seed back to 1. Upvote 0 Downvote
You use DBCC CHECKIDENT to reinitialize it. DBCC CHECKIDENT('table name', RESEED, 1) will set the seed back to 1.
Oct 24, 2002 Thread starter #3 sgueper Programmer May 2, 2002 18 ES Thank you very much I don't know how to do it where i have to do it to initialize the index? Thank you again Silvi Upvote 0 Downvote
Thank you very much I don't know how to do it where i have to do it to initialize the index? Thank you again Silvi