Quantcast
Browsing all 4 articles
Browse latest View live

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 Article


Answer 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


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 Article

Answer 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
Browsing all 4 articles
Browse latest View live