I'm using SQL Server Management Studio to generate sql script (big one)
to update Azure DB.
The problem is that the script is generated with IDENTITY
on and the insert statements are exported with the ID column which as result gives me the errors :
Cannot insert explicit value for identity column in table 'Table_Name' when IDENTITY_INSERT is set to OFF.
My question is how to generate the script right that is will not use IDENTITY
on and the insert.