• Greate Script. Usually peopel would like to see percentage growth which is easily calulate using this script of yours. Providing the Db always gorwos in size thsi will work. - Script great Idee 😎

    Select ((MAX(SizeInGigs) - MIN(SizeInGigs))/ MAX(SizeInGigs))*100 from (

    select BackupDate = convert(varchar(10),backup_start_date, 111)

    ,SizeInGigs=floor(backup_size)

    from msdb..backupset

    where

    database_name = 'CES'

    and type = 'd'

    )TB