MSDB Recovery Model

  • What is considered BEST PRACTICE for setting the recovery model for MSDB?

  • Assuming you're talking about SQL Server 2000, I'd say leave it in simple recovery mode as that's the way it ships and installs.  IIRC, even if you change it to full it will switch back to simple after a restart.  So if you want to keep it a full, you'll have to set up a start-up script to change modes back when the server boots up.

     

    My hovercraft is full of eels.

  • Since the change from Simple to Full requires a full backup of the DB before the logs can be used, you would also have to perform the backup in this startup script.

    So I guess you could call leaving it a Simple is an enforced Best Practice?

    Andy

  • I tend to agree, though if you have some auditing requirement about the information that's stored there (job history, backups, package changes, etc), then you might want to move to full.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply