How can I set default seed for all identities within a SQL Server database?
Posted
by Brandon DuRette
on Stack Overflow
See other posts from Stack Overflow
or by Brandon DuRette
Published on 2010-03-19T16:28:31Z
Indexed on
2010/03/19
16:31 UTC
Read the original article
Hit count: 150
Is there a way to tell SQL server to use specific default seed value for IDENTITY columns - assuming the (to be run) CREATE TABLE statements do not specify one? I don't really care about altering existing data or altering the seed values for specific IDENTITY columns. I want the same seed for all newly created identity columns. Assume I cannot modify the individual CREATE TABLE statements in any way.
© Stack Overflow or respective owner