Oct 23, 2002 #1 sgueper Programmer Joined May 2, 2002 Messages 18 Location 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 Joined Jun 8, 2001 Messages 54 Location 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 Joined May 2, 2002 Messages 18 Location 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