"Is there a way that I could have a report that verifies that all of my sql databases on the network have been backed-up?"I don't think this has much fail-safe if a backup fails (I haven't checked if the entry is STILL made even if you get a disk full, for example), but this will list the 100 most recent backups - you could modify it for "Databases which have not been backed up today" or some-such, or join it to [sysdatabases] to list databases NOT backed up in X days etc.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.backupset--WHERE database_name = N'MyDatabaseName' -- SELECT DB_NAME()-- AND type='D' -- L=Transaction, I=Differential, D=FullORDER BY backup_start_date DESC
Kristen