U voegt waarden in voor OperationId
dat is een identiteitskolom.
U kunt het invoegen van identiteit in de tabel op deze manier inschakelen, zodat u uw eigen identiteitswaarden kunt specificeren.
SET IDENTITY_INSERT Table1 ON
INSERT INTO Table1
/*Note the column list is REQUIRED here, not optional*/
(OperationID,
OpDescription,
FilterID)
VALUES (20,
'Hierachy Update',
1)
SET IDENTITY_INSERT Table1 OFF