SQL獨佔鎖定的解決方案

來源:互聯網
上載者:User

問題描述:
我有一個資料庫叫做inOutSell

已經備份到D:/mydatabase.bak
現在的情況是我要用sql語句進行還原
語句如下:

USE inOutSell
RESTORE DATABASE inOutSell
FROM DISK = 'D:/mydatabase.bak'
WITH REPLACE
GO

可是出現了如下的問題
查詢分析器報告如下:

伺服器: 訊息 3101,層級 16,狀態 1,行 2
因為資料庫正在使用,所以未能獲得對資料庫的排它訪問權。
伺服器: 訊息 3013,層級 16,狀態 1,行 2
RESTORE DATABASE 操作異常終止。

現在求解決方案 要求運用sql語句

 

create   proc   killspid     (@dbname    varchar(20))      
 as      
 begin     
  declare  @sql   nvarchar(500)     
  declare  @spid  int     
  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     
      begin     
          exec('kill  '+@spid)     
         fetch  next  from getspid  into  @spid     
      end     
  close  getspid     
  deallocate  getspid     
  end     
  
  --用法     
  use  master     
  exec  killspid  '資料庫名' 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.