7

BACKUP failed to complete the command BACKUP DATABASE ... WITH DIFFERENTIAL. Check the backup application log for detailed messages.

I see this message in SQL Server log file viewer. Where is the backup application log?

0

4 Answers 4

4

To get detailed information about the problem:

  1. Go to SQL Server Management Studio -> SQL Server Agent -> Jobs
  2. Right click the name of the job which causes troubles and select "View History"
  3. In Log File Viewer window, select error end view detailed error message.

In my case, the problem was in the next error:

error: "BACKUP DATABASE WITH COMPRESSION is not supported on Web Edition (64-bit). BACKUP DATABASE is terminating abnormally."

Sign up to request clarification or add additional context in comments.

Comments

2

I think this means the Application Event Log on the Server.

Are using a TSQL script to execute this backup job via SQLAgent? If so, you need to specify an Output file on the job step that contains the BACKUP TSQL.

In the Job Step on the left hand pane there should be General & Advanced. Click on Advanced and under title Transact-SQL script (T-SQL) there is an output file box. Enter any valid filename here (it doesn't need to exist, it will create it on the fly).

Once you have done this re-run your job and further detailed error messages will be written to this file.

UPDATE:

Have you previously performed a FULL database backup for this database? A FULL backup needs to exist before a DIFFERENTIAL backup can be performed.

3 Comments

This same message is in the Application Event Log.
I am using Back Up Database Task.
yes I have following schedule: each Sunday full backup, each day except Sunday diff backup. Full backups are backuping ok, but diff are failing.
1

Finally, I found the problem. It was caused by a Windows Backup on Windows Server 2008, which was also doing a full backup (behind the scene). And this caused that the SQL Server diff backup was unable to find the last full backup.

We solved the problem by migration to Windows Server 2008 R2.

Comments

0

Check the windows event logs (Application Log). Start->Run eventvwr

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.