I am not sure If I fully understand your problem, but here are a couple things you can do:
1) Check to see what the current identity field is
select Ident_current ('Table1')
or
DBCC CHECKIDENT('Table1')
2)
SET IDENTITY_INSERT [dbo].[Table1] ON
go
Insert Into [dbo].[Table1] (ID, Col1)
values...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.