SQL Server: What exactly is the backup_finish_date in master.sys.databases
问题 When querying for the last backup_finish_date with the following query (from SQL Server: how to query when the last transaction log backup has been taken?): SELECT d.name, d.recovery_model_desc, MAX(b.backup_finish_date) AS backup_finish_date FROM master.sys.databases d LEFT OUTER JOIN msdb..backupset b ON b.database_name = d.name AND b.type = 'L' GROUP BY d.name, d.recovery_model_desc ORDER BY backup_finish_date DESC The backup_finish_date for all my databases is null, this is for DBs with a