久热无码中文最新视频在线_国产激情一区二区久久麻豆_亚洲小视频在线播放_国产对白老熟女正在播放_午夜伦情电午夜伦情视频_国产自在自线午夜精品视频在_青青草国产线播放_成年人毛片在线观看免费

產(chǎn)品手冊(cè) 實(shí)施方案 用戶案例 問(wèn)題中心

解除某一個(gè)數(shù)據(jù)庫(kù)被應(yīng)用程序占用的情況

—— 解除數(shù)據(jù)庫(kù)占用
use master
go

declare @dbname sysname
set @dbname=’OIMobox’ –不能刪除,或不能 還原的數(shù)據(jù)庫(kù)

declare @s nvarchar(1000)
declare tb cursor local for
select s=’kill ‘+cast(spid as varchar)
from master..sysprocesses
where dbid=db_id(@dbname)

open tb
fetch next from tb into @s
while @@fetch_status=0
begin
exec(@s)
fetch next from tb into @s
end
close tb
deallocate tb

標(biāo)簽:手冊(cè)方案 上一篇:
展開更多
預(yù)約軟件體驗(yàn)

loading...