How to solve SQL Server Error 1222 i.e Unlock a SQL Server table

前端 未结 4 1145
不思量自难忘°
不思量自难忘° 2020-12-12 11:16

I am working in a database where I load data in a raw table by a data loader. But today the data loader got stuck for unknown reasons. Then I stopped the data loader from wi

4条回答
  •  情话喂你
    2020-12-12 12:08

    I had these SQL behavior settings enabled on options query execution: ANSI SET IMPLICIT_TRANSACTIONS checked. On execution of your query e.g create, alter table or stored procedure, you have to COMMIT it.

    Just type COMMIT and execute it F5

提交回复
热议问题