I have a table the holds snapshots of data. These snapshots are all tagged with 'jan2010'
or 'april2011'
. All the snapshots will grow exponentially over time and I wanted to see if I could forecast when we'd need to upgrade our storage.
Is there any way to
select monthlysnapshot, sum(size)
from tblclaims_liberty
group by monthlysnapshot
order by monthlysnapshot desc
What am I missing to get the size of the data returned? Is there a system function I can call?