Anyone,
I'm trying to create a report that tells me each time over the past 60 days one of my Windows servers reported a volume with 95% or higher usage. Is that possible? If so, how would I go about it?
If I followed all the criteria, this should do the trick. Open Report Writer and create an Advanced SQL report and dump this in the SQL tab:
select n.caption, v.caption, vu.datetime, vu.percentdiskused
from volumes v
join volumeusage vu on v.volumeid = vu.volumeid
join nodes n on n.nodeid = v.nodeid
where vu.datetime between dateadd(dd,-60,getdate()) and getdate()
and vu.percentdiskused >= 95
and v.volumetype = 'fixed disk'
and n.vendor = 'windows'
Thanks! That worked.
You're very welcome.