SQLServer數據庫的時候可能被別的程序占用,而造成無法還原或刪除,這里有一個簡單腳本,執行后能解決( 將腳本里面 AM 替換為 你的目標數據庫)
腳本需要在SQL的查詢分析器里面運行
use master
go
declare @dbname sysname
set @dbname=’AM’ –不能刪除,或不能 還原的數據庫
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
上一篇: 企業文件分享平臺Mobox的縮略圖功能部署
下一篇: 叉車檢測中心Gungho項目系統實施既要