Remplacez IDENTITY_INSERT par ON dans le serveur SQL [duplicate]

Cette question a déjà une réponse ici :

Réponse

Linsertion didentité explicite nécessite IDENTITY_INSERT propriété définie sur 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 

Réponse

USE SET IDENTITY_INSERT TABLEnAME ON

Noubliez pas de désactiver identity et quune seule table peut avoir identity_insert On à la fois

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *