Sql-server – Sql Server 2008 R2: Simple recovery model with transaction log backups

backupsql serversql-server-2008

I'm busy reviewing my SQL Maintenance plans and I'm a bit confused with the recovery model option on the databases, specifically related to point in time recovery.

Here is my scenario:

  • I have two maintenance plans
    • One that does hourly transaction log backups
    • another that does a daily full backups (but first a transaction log backup before the full backup)
  • All databases are set to use the simple recovery model.

Here are my Questions

  • Seeing that the recovery model is set to simple and msdn states that the simple recovery model does not support point-in-time recovery – Does this mean that I won't be able to use my transaction log backups to restore the database in a disaster to an hour before it happened?
  • Which backup should be done first, the database backup or the transaction log backups?

Articles that I'm busy reading say I should do the database backup first and then the transaction log backup else I will get maintenance plan errors, but I'm currently first backing up my transaction logs and then data databases and I'm not getting any errors.

My final solution (Maintenance Plan)
Set all databases to use the FULL recovery model. Then:
Hourly Maintenance Plan:
– Check sufficient hard drive space for backups
– Make Transaction Log Backups
– Archive transaction log backups (zip the .trn files)
– FTP the archived transaction log backups offsite

Daily Maintenance Plan:
– Check sufficient hard drive space for backups
– Do a full database backups followed by transaction log backups
– Archive backups (zip the .bak and .trn files)
– FTP the backups offsite

Weekly Maintenance Plan:
– Check database integrity
– Rebuild indexes
– Cleanup history older than 4 weeks
– Delete .bak and .trn files older than 4 weeks
– Delete archived backups (zip file) older than 4 weeks

If any task fails a notification email is sent. A success email is also sent when the daily and weekly task finish successfully.

Note of testing your maintenance plans. My first backups got corrupted by the ms windows ftp.exe not configured correctly to use passive mode. SO CHECK YOUR BACKUPS 🙂

Best Answer

Seeing that the recovery model is set to simple and msdn states that the simple recovery model does not support point-in-time recovery - Does this mean that I won't be able to use my transaction log backups to restore the database in a disaster to an hour before it happened?

Even taking a transaction log backup is not supported for databases using the SIMPLE recovery model. This is a restriction of the database engine based on how this recovery model works, and the recovery features it doesn't support, as you mentioned.

A transaction log backup maintenance plan task automatically skips databases in SIMPLE recovery to avoid causing errors.

Which backup should be done first, the database backup or the transaction log backups? Articles that I'm busy reading say I should do the database backup first and then the transaction log backup else I will get maintenance plan errors, but I'm currently first backing up my transaction logs and then data databases and I'm not getting any errors.

For the reasons I mentioned above, it won't matter for databases using SIMPLE recovery, as they will be skipped by the transaction log backup task.

For databases in the other two recovery models, a full backup must exist before you start taking transaction log backups (just the first time), or you will get an error -- this is probably what the articles refer to.


Point-in-time recovery ability is normally driven by business need -- in other words, you determine how critical the data is and how much you can afford to lose, then set the appropriate recovery model to meet those needs, and finally create a backup solution.

Even though SIMPLE recovery does not support point-in-time recovery, if an hour of data loss is okay, perhaps a differential backup solution could work for you. (There are far too many variables that go into developing this kind of solution to give you a complete picture with what was provided in the question.)