Can#39;t Kill SPID quot;Transaction Rollback in Progressquot;(无法杀死 SPID“正在进行的事务回滚)
问题描述
我的数据库中有一条处于永久回滚模式的未提交语句.当我尝试终止与此语句关联的 SPID 时,出现以下错误:
I have an uncommitted statement in perptual rollback mode in my database. When I try to kill the SPID associated with this statement, I get the following error:
事务回滚正在进行中.预计回滚完成:0%.预计剩余时间:0 秒.
transaction rollback in progress. Estimated rollback completion: 0%. Estimated time remaining: 0 seconds.
这条未提交的语句导致用户无法查看数据库的表、视图和过程树.如何停止此 SPID?
This uncommitted statement is causing users to not be able to view the DB's table, view, and procedure trees. How do I stop this SPID?
推荐答案
未提交的事务是数据库备份.有一个已知的错误(与 MS 修补程序一起),备份有时会挂起.重启集群解决了问题
The uncommitted transaction was a database backup. There is a known bug (along with MS Hotfix) where the backup sometimes hangs up. Restarting the cluster fixed the issue
这篇关于无法杀死 SPID“正在进行的事务回滚"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法杀死 SPID“正在进行的事务回滚"
基础教程推荐
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01