I have many tables; each has a primary key which is an Identity column with a seed of 1.
I have another program which converts data from a previous database (dBase) to sql.
This programs needs Indentity = No.
How can I change Identity and Identity Seed from my code?
I have many tables; each has a primary key which is an Identity column
Share
It sounds like you want to insert values into the IDENTITY column
You can do that using
Note: you must specify all the column names
To reseed identity (to lets say start at 77) use the following command