Need some help in modifying SQL script to capture the total amount of data for the past 2 years in EV Vault Store ?
Hi People,
I cannot find the total amount of data in EV Vault Store for the past two years by using the EV Operations Manager website (http://EV-VM1/MonitoringWebApp/default.aspx), so I manage to google around the script and found one as follows:
USE EVvaultstore1-DB
SELECT"Archived Date" = LEFT (CONVERT (VARCHAR, archiveddate, 20), 10),
"Daily Rate" = Count (*),
"Size (MB)" = Sum (itemsize) / 1024
FROM saveset
WHERE archiveddate > Dateadd(year, -2, Getdate ())
GROUP BY LEFT(CONVERT (VARCHAR, archiveddate, 20), 10)
ORDER BY "archived date" DESC
the output is in daily rate but I'm not sure if that is reflecting the correct total disk space size that I need to provision to be provisioned on the new CIFS share that I need to build for EV 10 migration.