加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

sqlserver 数据库设置单用户访问后转换回多用户(实用可行)

发布时间:2020-12-12 13:28:52 所属栏目:MsSql教程 来源:网络整理
导读:(1)杀死占用进程 declare @spid int ; declare @ddlstring nvarchar(max); declare @dbname varchar(200); set @dbname='BaseComponents'; #数据库名 declare tmpcur cursor? for select distinct spid as spid from sys.sysprocesses where dbid=db_id(@d

(1)杀死占用进程

declare @spid int ;
declare @ddlstring nvarchar(max);
declare @dbname varchar(200);
set @dbname='BaseComponents';#数据库名
declare tmpcur cursor?
for select distinct spid as spid from sys.sysprocesses
where dbid=db_id(@dbname) ;
OPEN tmpcur;
fetch tmpcur into @spid ;
while (@@FETCH_STATUS=0)
?begin?
? ?set @ddlstring=N'Kill '+CONVERT( nvarchar,@spid) ;
? ?execute sp_executesql @ddlstring ;
? ?fetch tmpcur into @spid ;
?end ;
close tmpcur ;
deallocate tmpcur ;

(2)设置属性为多用户

ALTER DATABASE BaseComponents SET MULTI_USER

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读