1. 程式人生 > >SQL 資料庫異地備份

SQL 資料庫異地備份

  1. 在資料伺服器所在區域網內選擇一臺計算機作為備份伺服器,在備份伺服器上面建立一個資料夾[databak],並且對該資料夾建立共享
  2. 在伺服器SQL查詢分析器裡執行以下程式碼建立虛擬硬碟Z

sp_configure 'show advanced options',1

reconfigure

go

sp_configure 'xp_cmdshell',1

reconfigure

go

-----檢查並開啟備份路徑

declare @string nvarchar(200)

set @string = 'net use z: \\伺服器名字或者IP\databak "伺服器登入密碼,如果沒密碼則為空

" /user: 伺服器名字或者IP \administrator'

exec master..xp_cmdshell @string