views:

48

answers:

2

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?

A: 

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.

Barry
This same message is in the Application Event Log.
TN
@TN - I have updated my answer
Barry
@Barry - I am using `Back Up Database Task`.
TN
@TN - answer updated.
Barry
@Barry, yes I have following schedule: each Sunday full backup, each day except Sunday diff backup. Full backups are backuping ok, but diff are failing.
TN
A: 

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

Thomas Rushton
This same message is there.
TN