Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 MS SQL Server 维护计划后将备份文件复制到另一台服务器的新共享文件夹中。怎么做??
这是我使用的解决方案
1- 使用 robocopy 命令创建批处理文件
ROBOCOPY C:\backfolder \\sharedserver\c$\backupcopy *.bak /S /purge
2-将新任务添加到任务计划程序以在维护计划时间后每天运行控制面板>>管理工具>>任务计划程序然后添加新任务以运行批处理文件。