DPM Error: “The statement BACKUP LOG is not allowed while the recovery model is SIMPLE..”


DPM cannot backup SQL database with transactions log while recovery model of database is SIMPLE. You have to just change “Recovery model” of your DB in SQL Server Management Studio.

1) Log on SQL Server Management Studio
2) Right click on database – Properties
3) In the left pane choose Options
4) Set the recovery model to Full

OR

Create a new SQL Query (use “New query” button on the standart bar):

USE YourDBNameHere ;
ALTER DATABASE YourDBNameHere  SET RECOVERY FULL ;

5) Open your DPM Console and run Consistency Check on all databases with the same error.

One thought on “DPM Error: “The statement BACKUP LOG is not allowed while the recovery model is SIMPLE..””

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: