22:32 2011-11-16 将下面语句保存为bat文件,可用任务计划定期执行。
1 @osql -S 127.0.0.1 -Uuser -Ppwd -i E:AuditOnlineAbout备份删除DBbackup.sql 2 @ascmd -S 127.0.0.1 -i E:AuditOnlineAbout备份删除ASbackup.xmla
1、备份数据到远程服务器,以下脚本保存为DBbackup.sql
1 --启用'xp_cmdshell 2 use master 3 exec sp_configure 'show advanced options', 1 4 reconfigure with override 5 exec sp_configure 'xp_cmdshell', 1 6 reconfigure with override 7 exec sp_configure 'show advanced options', 0 8 reconfigure with override 9 go 10 --创建映射网络路径 11 exec master..xp_cmdshell 12 'net use z: \127.0.0.1E$数据备份AuditDBback "password" /user:127.0.0.1administrator' 13 declare @time varchar(8) 14 declare @path varchar(100) 15 set @time=convert(varchar,getdate(),112) 16 set @path='z:databasetest'+@time+'.bak' 17 if convert(varchar,getdate(),112)%2=0 18 begin 19 backup database databasetest to disk=@path with init 20 end 21 go 22 --删除映射网络路径 23 exec master..xp_cmdshell 'net use z: /delete' 24 --关闭'xp_cmdshell 25 use master 26 exec sp_configure 'show advanced options', 1 27 reconfigure with override 28 exec sp_configure 'xp_cmdshell', 0 29 reconfigure with override 30 exec sp_configure 'show advanced options', 0 31 reconfigure with override
2、多维数据库备份
前提:需备份数据库服务器已正常发布OLAP服务;存在对应的ASCMD工具,并将路径添加到path系统变量中(Running AS Command(XMLA/MDX) as a Batch Job Using SSIS Package)
在Manage Studio中右击多维数据库—>备份—>勾选相应选项—>脚本,保存为ASbackup.xmla
1 <Backup xmlns="http://schemas.microsoft.com/analysisservices/2003/engine"> 2 <Object> 3 <DatabaseID>test</DatabaseID> 4 </Object> 5 <File>D: est.abf</File> 6 <AllowOverwrite>true</AllowOverwrite> 7 </Backup>
说明:其中-S为脚本所运行的服务器;z为远程服务器映射到本地的网络路径。例如现有A、B两台服务器,欲将A中的databasetest备份到B上,方法1:DBbackup.sql直接存放于A,z映射到B上某一文件夹;方法2:DBbackup.sql直接存放于B,z映射到B上某一文件夹,-S指定到A
EXP:备份到远程服务器
数据库服务器A,只知道数据库登录用户sa的password ;服务器B,知道服务器的登录用户 administrator及密码。现要将数据库master备份到服务器B。
1 /**********11:48 2013-6-24 备份到远程服务器**********/ 2 --数据库服务器A,只知道数据库登录用户sa的password;服务器B,知道服务器的登录用户administrator及密码。现要将数据库master备份到服务器B。 3 EXP: 4 --数据库服务器10.0.3.225,备份文件存放服务器10.0.3.247 5 --用数据库客户端连接到10.0.3.225 6 exec master ..xp_cmdshell 'ping 10.0.3.247' 7 exec master ..xp_cmdshell 'net use z: \10.0.3.247F$gsdata "password" /user:10.0.3.247administrator' 8 backup database master to disk ='z:master.bak'