Table and Index size in SQL Server - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T19:04:30Zhttp://stackoverflow.com/feeds/question/316831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316831/table-and-index-size-in-sql-server1Table and Index size in SQL ServerKamal Joshihttp://stackoverflow.com/users/340582008-11-25T09:40:17Z2009-12-09T18:39:36Z
<p>Can we have a SQL query which will basically help in viewing table and index sizes in SQl Server.</p>
<p>How SQL server maintains memory usage for tables/indexes?</p>
http://stackoverflow.com/questions/316831/table-and-index-size-in-sql-server/316893#3168932Answer by Ben R for Table and Index size in SQL ServerBen Rhttp://stackoverflow.com/users/277052008-11-25T10:09:41Z2008-11-25T10:09:41Z<p>EXEC sp_MSforeachtable @command1="EXEC sp_spaceused '?'"</p>
http://stackoverflow.com/questions/316831/table-and-index-size-in-sql-server/316895#3168950Answer by ConcernedOfTunbridgeWells for Table and Index size in SQL ServerConcernedOfTunbridgeWellshttp://stackoverflow.com/users/154012008-11-25T10:11:30Z2008-11-25T10:11:30Z<p>There is an extended stored procedure <code>sp_spaceused</code> that gets this information out. It's fairly convoluted to do it from the data dictionary, but <a href="http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61762" rel="nofollow">This link</a> fans out to a script that does it. <a href="http://stackoverflow.com/questions/177550/estimate-sql-server-index-sizes#177585">This stackoverflow question</a> has some fan-out to information on the underlying data structures that you can use to construct estimates of table and index sizes for capcity planning.</p>
http://stackoverflow.com/questions/316831/table-and-index-size-in-sql-server/316957#3169572Answer by devio for Table and Index size in SQL Serverdeviohttp://stackoverflow.com/users/213362008-11-25T10:38:25Z2008-11-25T10:38:25Z<p>The exec sp_spaceused without parameter shows the summary for the whole database. The foreachtable solution generates one result set per table - which SSMS might not be able to handle if you have too many tables.</p>
<p>I created a <a href="http://devio.wordpress.com/2007/10/11/how-much-space-do-my-sql-server-tables-use/" rel="nofollow">script</a> which collects the table infos via sp_spaceused and displays a summary in a single record set, sorted by size.</p>
http://stackoverflow.com/questions/316831/table-and-index-size-in-sql-server/635213#6352131Answer by Rob Garrison for Table and Index size in SQL ServerRob Garrisonhttp://stackoverflow.com/users/767402009-03-11T16:04:02Z2009-03-11T16:04:02Z<p>sp_spaceused gives you the size of all the indexes combined.</p>
<p>If you want the size of each index for a table, use one of these two queries:</p>
<pre><code>SELECT
i.name AS IndexName,
s.used_page_count * 8 AS IndexSizeKB
FROM sys.dm_db_partition_stats AS s
JOIN sys.indexes AS i
ON s.[object_id] = i.[object_id] AND s.index_id = i.index_id
WHERE s.[object_id] = object_id('dbo.TableName')
ORDER BY i.name
SELECT
i.name AS IndexName,
SUM(page_count * 8) AS IndexSizeKB
FROM sys.dm_db_index_physical_stats(
db_id(), object_id('dbo.TableName'), NULL, NULL, 'DETAILED') AS s
JOIN sys.indexes AS i
ON s.[object_id] = i.[object_id] AND s.index_id = i.index_id
GROUP BY i.name
ORDER BY i.name
</code></pre>
<p>The results are usually slightly different but within 1%.</p>
http://stackoverflow.com/questions/316831/table-and-index-size-in-sql-server/1875918#18759180Answer by Zachary Burt for Table and Index size in SQL ServerZachary Burthttp://stackoverflow.com/users/1044612009-12-09T18:39:36Z2009-12-09T18:39:36Z<p>You may also find the stored procedure <code>sp_helpdb</code> useful</p>