SQL Reset Identity ID in already populated table

Posted by rockinthesixstring on Stack Overflow See other posts from Stack Overflow or by rockinthesixstring
Published on 2010-05-08T00:13:06Z Indexed on 2010/05/08 0:18 UTC
Read the original article Hit count: 287

Filed under:
|

hey all. I have a table in my DB that has about a thousand records in it. I would like to reset the identity column so that all of the ID's are sequential again. I was looking at this but I'm ASSuming that it only works on an empty table

Current Table

ID    |    Name
1           Joe
2           Phil
5           Jan
88          Rob

Desired Table

ID    |    Name
1           Joe
2           Phil
3           Jan
4           Rob

Thanks in advance

© Stack Overflow or respective owner

Related posts about sql

Related posts about identity-column