操做數據庫還原時若是提示數據庫沒法獨佔使用,可使用下面的方法殺掉進程

--一、查找數據的dbid
Select * from master..sysdatabases where name = 'testeq'


--二、查找對應dbid的進程ID
Select * from sys.sysprocesses a where a.dbid = '32'

--三、執行殺進程spid
kill 52
相關文章
相關標籤/搜索