Quantcast
Channel: Red Gate forums: SQL Backup 7
Viewing all articles
Browse latest Browse all 713

RE: Restores failing with exit code 790

$
0
0
Could you please run this query on the instance where the backup was taken?

Code:
SELECT d.physical_device_name
FROM msdb..backupset a
INNER JOIN msdb..backupset b ON a.database_backup_lsn = b.checkpoint_lsn
INNER JOIN msdb..backupmediafamily c ON a.media_set_id = c.media_set_id
INNER JOIN msdb..backupmediafamily d ON b.media_set_id = d.media_set_id
WHERE c.physical_device_name LIKE '%DIFF_Onyx_20130116_023012.sqb'

This query should tell you the full backup set that the differential backup requires.

Viewing all articles
Browse latest Browse all 713

Trending Articles