Query for total backup space count

TaSMania

ADSM.ORG Member
Joined
Nov 17, 2015
Messages
126
Reaction score
1
Points
0
Other than running
Code:
select date(start_time) as start_time,sum(bytes/1024/1024/1024) as GB_BYTES from summary where activity='BACKUP'group by date(start_time)
to get average of daily backup data, is there any other way like Query * something that's not in the admin reference?
 
For an average, do use "avg" instead of "sum"
avg(bytes/1024/1024/1024)

Or you could do the math:
(sum(bytes/1024/1024/1024)/count(bytes))
 
The Operations Center - Overview Page also gives you info about the also 24 hours and the previous 24:
1522342409850.png

The General Operations Report also gives you additional info:
1522342668296.png
 
so from OC which data should I compare to the data from my select statement?
Data I got from select statement does not match any data in OC.
 
Back
Top