I have a situation where I generate script of a database using SSMS and restore the schema and insert the data manually.
The problem Im facing now is with identity seed value.
Like,
Current Identity seed value 9 in main table and then I deleted id 8 and 9. Using SSMS generate a script and create a new database and import all the records. Now I can see that the Current Identity seed become 7 in new database table but I want it to be same as original table ie 9.
Is there any way to include the next identity seed value in the create table statement like MySQL has got.
Thank you Peter