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

前端 未结 7 1358
-上瘾入骨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:33

    Add set off also

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

提交回复
热议问题