Esta pergunta já tem uma resposta aqui :
Resposta
Exigência de inserção de identidade explícita IDENTITY_INSERT
propriedade definida como ON.
SET IDENTITY_INSERT MyTable ON -- Statement Allows explicit values to be inserted into -- the identity column of a table. GO INSERT INTO MyTable(ID, Name, Description) VALUES (0, "Special title", "special item"); GO SET IDENTITY_INSERT MyTable OFF -- Statement revert granted permission GO
Resposta
USE SET IDENTITY_INSERT TABLEnAME ON
Lembre-se de desligar a identidade e que apenas uma tabela pode ter identity_insert On por vez