sql server 强制关闭连接

Posted 3.25

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql server 强制关闭连接相关的知识,希望对你有一定的参考价值。

USE master;
GO
DECLARE @SQL VARCHAR(MAX);
SET @SQL=‘‘
SELECT @[email protected]+‘; KILL ‘+RTRIM(SPID)
FROM master..sysprocesses
WHERE dbid=DB_ID(‘数据库名‘);

-- 更改数据库为多用户访问
EXEC(@SQL);
ALTER DATABASE 数据库名 SET MULTI_USER;

 

 

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 强制关闭连接的主要内容,如果未能解决你的问题,请参考以下文章

Microsoft SQL Server 查询连接数和关闭连接数

sql 关闭所有连接SQL Server数据库

关闭SQL Server 数据库所有使用连接

我应该何时打开和关闭与 SQL Server 的连接

关闭SQL Server 数据库所有使用连接

Wildfly + SQL Server 连接随机关闭且未恢复