---------------------------------------------- 或者 ALTER DATABASE [datebasename] SET OFFLINE WITH ROLLBACK IMMEDIATE -----------------------------------------------
这时需要在还原数据库前先杀死正在使用数据库得线程.
1、首先定位到master 数据库
2、运行如下语句
如以下杀死正在使用'jcjq'数据库的线程:
declare @dbname varchar(20)
set @dbname='jcjq'
declare @sql nvarchar(500)
declare @spid int--SPID 值是当用户进行连接时指派给该连接的一个唯一的整数
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--如果FETCH 语句没有执行失败或此行不在结果集中。
begin
exec('kill '+@spid)--终止正常连接
fetch next from getspid into @spid
end
close getspid
deallocate getspid