SQL Server中如何備份到異機

來源:互聯網
上載者:User

這裡提供兩種方法:

1,寫成預存程序,建立作業定時備份

--在sql中映射一下 
exec master..xp_cmdshell 'net use z: \\computer_name\D$ "密碼" /user:computer_name\administrator' 
/*--說明: 
z:是映射網路路徑對應原生盤符,與下面的備份對應 
\\computer_name\D$是要映射的網路路徑 
computer_name是遠端電腦名稱, 
administrator是登陸的使用者名稱 
密碼 指定的administrator使用者的密碼 
--*/ 
--備份;with init覆蓋 ¦noinit添加 
backup database 庫名 to disk='E:\H_BACKUP.bak' with init 
--COPY 
exec master..xp_cmdshell 'copy E:\H_BACKUP.bak z:' 
--刪除(這句可以去掉) 
--exec master..xp_cmdshell 'del E:\H_BACKUP.bak' 
--完成後刪除映射 
exec master..xp_cmdshell 'net use z: /delete'

2,調度

企業管理器 --管理 --SQL Server代理 --右鍵作業 --新增作業 --"常規"項中輸入作業名稱 --"步驟"項 --建立 --"步驟名"中輸入步驟名 --"類型"中選擇"Transact-SQL 指令碼(TSQL)" --"資料庫"選擇執行命令的資料庫 --"命令"中輸入要執行的語句: 
declare @strsql varchar(1000) 
declare @strdirname varchar(50) 
declare @strcmd varchar(50) 
declare @strsend varchar(1000) 
declare @strdate varchar(50) 
exec master..xp_cmdshell 'net use \\192.168.0.151\d$ Password /user:192.168.0.151\administrator' 
set @strsql='backup database new_his to disk=''\\192.168.0.151\d$\serverd\' 
set @strdirname=replace(substring(convert(varchar(20),getdate(),120),1,10),'-','')+'12' 
set @strcmd='md \\192.168.0.151\d$\serverd\' s
et @strcmd=@strcmd+@strdirname 
exec master..xp_cmdshell @strcmd 
--print @strsql 
set @strsql=@strsql+@strdirname+'\new_hisbackup.dat'' with init,nounload,noskip,noformat' -
-print @strsql 
exec (@strsql) 
----其中寫的IP地址及共用目錄,網友自行修改,Password一定要正確 --確定 --"調度"項 --建立調度 --"名稱"中輸入調度名稱 --"調度類型"中選擇你的作業執行安排 --如果選擇"反覆出現" --點"更改"來設定你的時間安排 然後將SQL Agent服務啟動,並設定為自動啟動,否則你的作業不會被執行 設定方法: 我的電腦--控制台--管理工具--服務--右鍵 SQLSERVERAGENT--屬性--啟動類型--選擇"自動啟動"--確定.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.