Sql Server 强制断开数据库已有连接的方法

用管理员账户sa登陆,然后在master下新建查询:

Sql Server 强制断开数据库已有连接的方法

在查询窗口输入:

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 '+@i) fetch next from cur into @i end close cur deallocate cur 


上一篇:实战课堂 | DMS企业版教你用一条SQL搞定跨实例查询


下一篇:全面上云的拐点已至:在云上,创造更多可能!