SQL stores a "log" of all backups made, so that may be useful to know what has been backed up, and when, but restoring to a separate machine and doing a DBCC CHECKDB is the only sure way to check that the backup is failsafe.SELECT TOP 100 database_name, backup_set_id, backup_start_date, backup_finish_date, type, name, user_name, first_lsn, last_lsn, database_backup_lsn-- , * FROM msdb.dbo.backupsetWHERE database_name = N'MyDatabaseName' -- SELECT DB_NAME()-- AND type='D' ORDER BY backup_start_date DESC
Kristen