Hello,
I have the following sql script:
insert into table1 values ('1', 'testdata', '999')
insert into table1 values ('2', 'testdata2', '998')
I get the error below because the first column is an identity column. I know that I can leave the first column blank and it will insert it but is there any way for me to force it to take a number?
An explicit value for the identity column in table 'table1' can only be specified when a column list is used and IDENTITY_INSERT is ON.
Thanks,
Tracy
I have the following sql script:
insert into table1 values ('1', 'testdata', '999')
insert into table1 values ('2', 'testdata2', '998')
I get the error below because the first column is an identity column. I know that I can leave the first column blank and it will insert it but is there any way for me to force it to take a number?
An explicit value for the identity column in table 'table1' can only be specified when a column list is used and IDENTITY_INSERT is ON.
Thanks,
Tracy