Wymagane jawne podanie tożsamości Właściwość IDENTITY_INSERT
ustawiona na WŁ.
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
UŻYJ SET IDENTITY_INSERT TABLEnAME ON
Pamiętaj, aby wyłączyć tożsamość i tylko jedna tabela może mieć włączoną tożsamość_insert naraz