Reputation: 315
I am trying to do some capacity planning based on some current database table sizes in SQL Server 2008. The goal here is to figure out how much disk storage I may potentially need in the future based on "past weather".
I didn't see anything in the MSDN doc page for sp_spaceused() about how exactly to interpret the results for one table. http://msdn.microsoft.com/en-us/library/ms188776.aspx
Is it simply a matter of summing: reserved + data + index_size + unused?
Thanks.
Upvotes: 0
Views: 490