IDENTITY_INSERT is set to OFF - How to turn it ON?

前端 未结 7 1366
-上瘾入骨i
-上瘾入骨i 2020-12-12 18:05

I have a deleted file archive database that stores the ID of the file that was deleted, I want the admin to be able to restore the file (as well as the same ID for linking

7条回答
  •  借酒劲吻你
    2020-12-12 18:12

    The Reference: http://technet.microsoft.com/en-us/library/aa259221%28v=sql.80%29.aspx

    My table is named Genre with the 3 columns of Id, Name and SortOrder

    The code that I used is as:

    SET IDENTITY_INSERT Genre ON
    
    INSERT INTO Genre(Id, Name, SortOrder)VALUES (12,'Moody Blues', 20) 
    

提交回复
热议问题