I'm running this in ASP:
objConn.Execute("set identity_insert Keywords on"
objConn.Execute("insert into Keywords (keywordid,keyword) values(1,'abc')"
I keep getting the message that identity_insert is not set on for table. I see references to dbo qualification in related views and SPs being a potential problem, but I've removed them.
Any ideas?
objConn.Execute("set identity_insert Keywords on"
objConn.Execute("insert into Keywords (keywordid,keyword) values(1,'abc')"
I keep getting the message that identity_insert is not set on for table. I see references to dbo qualification in related views and SPs being a potential problem, but I've removed them.
Any ideas?