SQL Server error on update command - “A severe error occurred on the current command”

后端 未结 10 1942
一生所求
一生所求 2020-11-28 11:13

Running the following query in SQL Server Management Studio gives the error below.

update table_name set is_active = 0 where id  = 3
10条回答
  •  臣服心动
    2020-11-28 11:26

    In my case,I was using SubQuery and had a same problem. I realized that the problem is from memory leakage.

    Restarting MSSQL service cause to flush tempDb resource and free huge amount of memory. so this was solve the problem.

提交回复
热议问题