Sql Server 强制断开数据库已有连接的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sql Server 强制断开数据库已有连接的方法相关的知识,希望对你有一定的参考价值。
用管理员账户sa登陆,然后在master下新建查询:
在查询窗体输入:
declare @i int declare cur cursor for select spid from sysprocesses where db_name(dbid)= '要断开连接的数据库名称' open cur fetch next from cur into @i while @@fetch_status=0 begin exec('kill '[email protected]) fetch next from cur into @i end close cur deallocate cur
以上是关于Sql Server 强制断开数据库已有连接的方法的主要内容,如果未能解决你的问题,请参考以下文章
SQL Server 断开某个数据库所有连接(还原的时候需要)
SQL Server 断开某个数据库所有连接(还原的时候需要)