How to find the total backed up data on previous 24 hours in TSM

How to find the total backed up data on previous 24 hours in TSM

SQL command to determine total data backed up for the previous 24 hours.

SELECT activity , CAST(sum(bytes/1024/1024/1024) AS decimal(8,2)) AS "Total GB" FROM summary WHERE activity='BACKUP' AND start_time>=current_timestamp - 24 hours GROUP BY activity
Previous
Next Post »