使用存储过程终止:
在查询分析器下创建终止数据库所有接连的存储过程,通过调用该存储过程可以关闭所有使用该数据库的连接操作。
--创建终止使用数据库下所有进程的存储过程,参数为数据库名称
use master
go
create proc KillSpByDbName(@dbname varchar(20))
as
begin
declare @sql nvarchar(500),@temp varchar(1000)
declare @spid int
set @sql='declare getspid cursor for
select spid from sysprocesses where dbid=db_id('''+@dbname+''')'
exec (@sql)
open getspid
fetch next from getspid into @spid
while @@fetch_status <>-1
begin
set @temp='kill '+rtrim(@spid)
exec(@temp)
fetch next from getspid into @spid
end
close getspid
deallocate getspid
end
--举例使用,关闭数据库下的所有连接操作
Use master
Exec KillSpByDbName '数据库名称'
相关文章
- SQL SERVER连接oracle数据库几种方法
- excel表格显示无法连接服务器,excel中表格无法连接数据库-EXCEL 连接SQL SERVER数据库显示无法连接...
- SQL Server数据库partition by 与ROW_NUMBER()函数使用详解[转]
- springboot报错:解决java连接SQLSERVER数据库之驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接的问题
- Python 使用 pymssql 连接 SQL Server 报错:DB-Lib error message 20002, severity 9
- Java连接sqlserver,驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接的问题
- : 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。
- 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。
- .Net6 DbContext 连接指定数据库,使用sql语句直接进行操作,执行sql
- C#操作sql server之连接sql server数据库