declare @dbname varchar(20)
set @dbname='citygreen' --這裏給變量賦的值是要進行還原的數據庫的名稱 sql
declare @sql nvarchar(500)
declare @spid int --SPID sqlserver進程ID int
set @sql='declare getspid cursor for
select spid from sysprocesses where dbid=db_id('''+@dbname+''')'--當前正由進程使用的數據庫id int
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 數據庫