每月前 10 天的 SQL Server 维护计划

发布于 2024-09-07 12:50:09 字数 48 浏览 3 评论 0原文

如何在 SQL 2008 中为每月前 10 天运行的完整备份创建维护计划? 谢谢!

How to create a a maintenance plan for a full backup that run the first 10 days of the month in SQL 2008?
THANKS!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隱形的亼 2024-09-14 12:50:09

创建维护计划并安排其每天运行。

然后进入“SQL Server 代理”中的作业并修改启动备份的 TSQL - 在那里放置一个仅在该月的前 10 天执行备份的条件。

If DatePart (dd, GetDate()) < 11 
BEGIN
    BACKUP DATABASE AdventureWorks2008R2 
        TO DISK = 'Z:\SQLServerBackups\AdvWorksData.bak'
        WITH FORMAT;
END

Create the maintenance plan and schedule it to run every day.

Then go into the job in "SQL Server Agent" and modify the TSQL that launches the backup - put a condition there that will only execute the backup on the first 10 days of the month.

If DatePart (dd, GetDate()) < 11 
BEGIN
    BACKUP DATABASE AdventureWorks2008R2 
        TO DISK = 'Z:\SQLServerBackups\AdvWorksData.bak'
        WITH FORMAT;
END
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文