↧
Answer by Kev Riley
The answer becomes more clearer if you look at the current value of the identity using dbcc checkident('region') run this after the creation of the table and you get Checking identity information:...
View ArticleAnswer by Kevin Feasel
You can use the following to check the current identity seed: dbcc checkident('dbo.Region'); Run that right after you create the table and you can see it's NULL--no identity has been seeded. After you...
View Article