Hi,
Following is my table definition:
create table test1 (col1 int primary key identity(1,1))
Now here, the only column col1 in the table is an identity column. Now I want to add explicit values to this columnwithout SET Identity_Insert test1 On.
How?