patternsqlMinor
IDENTITY_INSERT seems stuck
Viewed 0 times
stuckseemsidentity_insert
Problem
I might be forgetting something, but essentially, I'm struggling with IDENTITY_INSERT.
I'm trying to move data between tables, both of which have an identity column (similar schema).
returns that IDENTITY_INSERT is already ON for that table. (Error Msg 8107) Fine, it's already ON, I can work with that, right?
Then:
returns that I can't insert an explicit value .. when IDENTITY_INSERT is OFF (Error Msg 544). But it just said it was ON.
So, what's going on?
EDIT:
Actual script (save for table names and structure):
I'm trying to move data between tables, both of which have an identity column (similar schema).
SET IDENTITY_INSERT DestinationTable ON;returns that IDENTITY_INSERT is already ON for that table. (Error Msg 8107) Fine, it's already ON, I can work with that, right?
Then:
INSERT INTO DestinationTable (Id, ColA) SELECT Id, ColA FROM SourceTable;returns that I can't insert an explicit value .. when IDENTITY_INSERT is OFF (Error Msg 544). But it just said it was ON.
So, what's going on?
EDIT:
Actual script (save for table names and structure):
SET IDENTITY_INSERT User2.DestinationTable ON;
INSERT INTO User2.DestinationTable (Id, ColA) SELECT Id, ColA FROM User1.SourceTable;
SET IDENTITY_INSERT User2.DestinationTable OFF;Solution
Is it possible you have two tables with the same name in different schemas? Some random doc I found online states that message 8107 appears when you already have
Another debugging step to check: You state that the issue keep occurring even after you drop and recreate the table, but what if you drop and don't recreate the table, and try to enable
IDENTITY_INSERT set to ON for another table in the db...Another debugging step to check: You state that the issue keep occurring even after you drop and recreate the table, but what if you drop and don't recreate the table, and try to enable
IDENTITY_INSERT on another table? What happens then?Context
StackExchange Database Administrators Q#15300, answer score: 4
Revisions (0)
No revisions yet.