Hello,
I am looking to build SQL query to see Cluster's Used, Unused and Allocated capacity from past 7 weeks. One pointer for each week.
I am able to generate for current date from view "report_storage_summary_aux" but dont know how to use fact tables.
SELECT storage_name, storage_pool_used_capacity
FROM report_storage_summary_aux
WHERE storage_name LIKE 'Cluster1' AND storage_pool_used_capacity <> 0 OR
storage_name LIKE 'Cluster2' AND storage_pool_used_capacity <> 0
Thanks
Gaurav