Database backup plan on a mirrored scenario
-
Thursday, July 12, 2012 9:27 PM
Hi, I am designing the database maintenance plan, for a SQL Server 2008 R2 using Database Mirroring (Two SQL Servers), I need to know if the database backup design I made is acceptable, it is based on this article http://msdn.microsoft.com/en-us/library/ms181092(v=sql.105).aspx
The plan would be:
- t0 Full Backup
- t1 Transaction Log Backup
- t2 Shrink Log
- t3 Differential Backup
- t4 Transaction Log Backup
- t5 Shrink Log
- t6 Differential Backup
- ..
- (Starts again)
Questions:
1) Is it necessary to make a Diff Backup when using Transaction Log Backup?
2) Does this plan conflicts in any way with database mirroring? (not in the case of a role switch, I mean, under normal operation of the mirror)
Many Thanks
All Replies
-
Friday, July 13, 2012 4:52 AM
Why shrink the log file?
>>>>1) Is it necessary to make a Diff Backup when using Transaction Log Backup?
No
>>2) Does this plan conflicts in any way with database mirroring? (not in the case of a role switch, I mean, under normal operation of the mirror)
No
We usually do FULL /LOG file backup on the primary database....
Best Regards,Uri Dimant SQL Server MVP,http://sqlblog.com/blogs/uri_dimant/
- Proposed As Answer by vr.babu Friday, July 13, 2012 6:06 AM
- Marked As Answer by AndresGorzelany Monday, July 16, 2012 3:37 PM

