We recently upgraded to 11.28. We have used the metrics server to query the Monthly Chargeback table under CVCloud DB so we can get charges back to our customers. This no longer has any data. I did a query of pulling everything with no parameters and nothing is there. Is there a new table to query for these reports.
Here is my current SQL query
SELECT client.ClientName AS ServerName, MAX(CAST(monthly.FrontEndSize AS float)/1073741824) AS QTY, monthly.StartDate AS CVMonthAdded, --GETDATE() , CASE WHEN client.CommServUniqueId = '10000' THEN '1460' WHEN client.CommServUniqueId = '10003' THEN '760' WHEN client.CommServUniqueId = '10005' THEN '4903' WHEN client.CommServUniqueId = '10006' THEN '4903' WHEN client.CommServUniqueId = '10012' THEN '3303' WHEN client.CommServUniqueId = '10014' THEN '9609' WHEN client.CommServUniqueId = '10015' THEN '9529' WHEN client.CommServUniqueId = '10017' THEN '9609' ELSE '' END as BLC --, client.CommServUniqueId --, monthly.ClientId, client.LatestDataProtection, monthly.StartDate FROM [KBSGBY0RPT01\COMMVAULT].[CVCloud].[dbo].[cf_SurveyMonthlyChargeback] monthly JOIN [KBSGBY0RPT01\COMMVAULT].[CVCloud].[dbo].[cf_SurveyClient] client ON (monthly.CommservUniqueId = client.CommServUniqueId AND monthly.ClientId = client.ClientId) WHERE monthly.Type = 1 AND (StartDate > GETDATE() - 50) AND (monthly.FrontEndSize/1073741824) >= 5 GROUP BY ClientName, monthly.StartDate, client.CommServUniqueId