Coding is fun...
"Programmers are a device for turning caffeine into code."
Pages
Blog Posts
Random readable
Showing posts with label
TSQL
.
Show all posts
Showing posts with label
TSQL
.
Show all posts
Saturday, April 3, 2010
Reseeding Identity Column in SQL Server / TSQL
ShareThis
Sometimes we need to change the seed value in Identity Column in a Table in SQL Server.
Here is the Alter Table Statement for doing that:
DBCC CHECKIDENT('
', RESEED,
)
Example:
DBCC CHECKIDENT('Students', RESEED, 12)
Older Posts
Home
Subscribe to:
Posts (Atom)