码迷,mamicode.com
首页 > 数据库 > 详细

sqlserver 备份文件管理,与异地备份

时间:2014-08-04 18:23:18      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:blog   http   使用   文件   ar   html   管理   amp   


sqlserver 备份文件管理,与异地备份


1.sqlserver 自动执行 exec ManagerDB.dbo.[del_bak] 备份DB


ManagerDB.dbo.[del_bak] 相关脚本 参看 如下链接:

http://dwchaoyue.blog.51cto.com/2826417/1439126



2.window 自动化任务 D:\script\Backup.bat 压缩文件 ,传送到备份服务器


文件 D:\script\Backup.bat 内容如下:

rar a -k -r -s -m3     D:\WinRARDB\%date:~0,4%%date:~5,2%%date:~8,2%  D:\bak

copy D:\WinRARDB\%date:~0,4%%date:~5,2%%date:~8,2%.rar Z:\


note:  Z:\  是一个网络驱动器。


3.sqlserver 自动执行 exec ManagerDB.dbo.del_historyfile 删除历史备份文件


ManagerDB.dbo.del_historyfile 的相关脚本如下 :

declare @del_date varchar(100)

set @del_date=left(convert(nvarchar,dateadd(DD,1,getdate()),120),10)+‘T‘+convert(nvarchar,dateadd(HH,0,getdate()),108)

EXECUTE master.dbo.xp_delete_file 0,N‘D:\bak‘,N‘bak‘,@del_date



4.window 自动化任务 D:\script\delData\Del_History_files.vbs 删除过期压缩文件


文件  D:\script\delData\Del_History_files.vbs  内容如下:

DIM  strDate   

DIM  strDatestringOld

DIM  strPath 

DIM  fs


strDate = Date-3

strDatestringOld=Year(strDate) & Right("0" & Month(strDate),2) & Right("0" & Day(strDate),2)&".rar"

strPath ="D:\WinRARDB\"&strDatestringOld

fs =createobject("scripting.filesystemobject")


If fs.fileExists(strPath) Then

  fs.DeleteFile(strPath)

End If



window rar命令参考链接

http://www.sy15168.cn/news/html/1468.html


note:winrar 安装后不能直接在cmd 窗口中使用 rar 命令 ,添加环境变量之后方可直接使用。


本文出自 “SQLServer MySQL” 博客,请务必保留此出处http://dwchaoyue.blog.51cto.com/2826417/1535276

sqlserver 备份文件管理,与异地备份,布布扣,bubuko.com

sqlserver 备份文件管理,与异地备份

标签:blog   http   使用   文件   ar   html   管理   amp   

原文地址:http://dwchaoyue.blog.51cto.com/2826417/1535276

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!