Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come attivare e disattivare IDENTITY_INSERT utilizzando SQL Server 2008?

Tramite SQL come da MSDN

SET IDENTITY_INSERT sometableWithIdentity ON

INSERT INTO sometableWithIdentity 
    (IdentityColumn, col2, col3, ...)
VALUES 
    (AnIdentityValue, col2value, col3value, ...)

SET IDENTITY_INSERT sometableWithIdentity OFF

Il messaggio di errore completo ti dice esattamente cosa c'è che non va...