Hi there If you want to know the restore history. Use this one instead:SELECT TOP (100) PERCENT RH.destination_database_name, RH.restore_history_id, RF.file_number, RH.restore_date, RF.destination_phys_name, RG.filegroup_name, BS.name AS Backup_Set_Name, BS.description, BS.database_creation_date, BS.backup_start_date, BS.database_name, BS.server_nameFROM msdb.dbo.restorehistory AS RH LEFT OUTER JOIN msdb.dbo.restorefile AS RF ON RF.restore_history_id = RH.restore_history_id LEFT OUTER JOIN msdb.dbo.restorefilegroup AS RG ON RG.restore_history_id = RH.restore_history_id LEFT OUTER JOIN msdb.dbo.backupset AS BS ON BS.backup_set_id = RH.backup_set_idORDER BY RH.restore_date DESC