I've set 2 schedules on a maintenance plan (SQL Server) for backups.
One of the schedules is set to run each 1 hour for a full database backup, and the other is set to run each 20 minutes for a differential backup. The problem is that they will execute at the same time when the first schedule runs.
How can I set the differential backup to avoid running at time X:00 ?
Current setup:
- 00:00 - Full backup + Diff backup (Problem)
- 00:20 - Diff backup
- 00:40 - Diff backup
- 01:00 - Full backup + Diff backup (Problem)
I want it to execute like this:
- 00:00 - Full backup only
- 00:20 - Diff backup
- 00:40 - Diff backup
- 01:00 - Full backup only
You could create 3 Maintenance plans:
As these can then repeat hourly, you'll get the 3 backups per hour. To make it easier, put them into the same backup folder and include description in each backup name (eg. Full_, FirstDiff_, SecondDiff_).