Linserimento dellidentità esplicita richiede IDENTITY_INSERT
proprietà impostata su 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
USE SET IDENTITY_INSERT TABLEnAME ON
Ricorda di disattivare lidentità e che solo una tabella alla volta può avere identity_insert attivo