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

后端 未结 10 1929
一生所求
一生所求 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:39

    Run DBCC CHECKTABLE('table_name');

    Check the LOG folder where the isntance is installed (\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG usually) for any file named 'SQLDUMP*'

提交回复
热议问题