http://www.mssqltips.com/tip.asp?tip=1219
I have never been able to figure out the mystery of why transaction log backup always failed until today. It's definitely a huge oversight on my behalf. Here is one good link on the recovery models of each system database in SQL Server:
http://msdn.microsoft.com/en-us/library/ms365937.aspx
To sum it up:
Master (Simple) - Okay to backup the database file but NOT the transaction log
Model (Full) - Full backup on both database file and transaction log
msdb (Simple) - changed to Full Recovery Model is highly recommended. Full backup on both database file and transaction log
tempdb (Simple) - Simple Recovery Model is REQUIRED. You CANNOT backup tempdb database.
Hope this reminds and helps the ones who find the tips helpful! Cheers!
No comments:
Post a Comment