Dear experts,
I am using this query to get the disk size and it is showing me the latest 1000 entries because we limit that size in studio.
select SNAPSHOT_ID, HOST, TOTAL_SIZE, USED_SIZE from _SYS_STATISTICS.global_disks where USAGE_TYPE = 'DATA'ORDERby SNAPSHOT_ID DESC
Is it possible to get the size between cetrain "snapshot_id"
something like select SNAPSHOT_ID, HOST, TOTAL_SIZE, USED_SIZE from _SYS_STATISTICS.global_disks where USAGE_TYPE = 'DATA' and SNAPSHOT_ID ='2016-02-14 12:00:00'
I want to get disk size at a certain point of time two weeks a go. Can anyone suggest where to modify.
Thanks,
Jun