服务器管理器->工具->任务计划程序
右键"任务计划程序"->新文件夹,自定义为DBA
右键DBA文件夹,创建基本任务,命名为purge_backup_history
选择每天触发
选择每天的执行时间为2:00:00,选择启动程序。因为数据库备份策略在每天23:00,所以指定清理历史备份时间为凌晨2点
导入清理脚本
脚本内容如下:并保存在D:\SQLSHARE\tkdba目录下
@echo off
FORFILES /P "D:\SQLBAK\CISDB" /M * /D -3 /C "cmd /c del @path"
FORFILES /P "D:\SQLBAK\EDSS" /M * /D -3 /C "cmd /c del @path"
FORFILES /P "D:\SQLBAK\EDSS_Monitor" /M * /D -3 /C "cmd /c del @path"
FORFILES /P "D:\SQLBAK\rceis_xxl_job" /M * /D -3 /C "cmd /c del @path"
FORFILES /P "D:\SQLBAK\THIS4" /M * /D -3 /C "cmd /c del @path"
FORFILES /P "D:\SQLBAK\SIGN_N" /M * /D -3 /C "cmd /c del @path"
FORFILES /P "D:\SQLBAK\SIGN" /M * /D -3 /C "cmd /c del @path"
FORFILES /P "D:\SQLBAK\WinningReport_DW" /M * /D -3 /C "cmd /c del @path"
exit
点击“完成”