First w/ MSDB set as FULL Recovery ... stop and restart SQL Server. 10 to 1 it will have reset the FULL back to Simple. This is tied to the issue of 'trunc. log on chkpt' being on.
SO lets do this ... Run this code in Query Analyzer:
Code:
use master
go
EXEC sp_dboption 'msdb', 'trunc. log on chkpt', 'false'
go
sp_dboption 'msdb'
go
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.