Table and Index size in SQL Server - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T19:04:30Z http://stackoverflow.com/feeds/question/316831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316831/table-and-index-size-in-sql-server 1 Table and Index size in SQL Server Kamal Joshi http://stackoverflow.com/users/34058 2008-11-25T09:40:17Z 2009-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#316893 2 Answer by Ben R for Table and Index size in SQL Server Ben R http://stackoverflow.com/users/27705 2008-11-25T10:09:41Z 2008-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#316895 0 Answer by ConcernedOfTunbridgeWells for Table and Index size in SQL Server ConcernedOfTunbridgeWells http://stackoverflow.com/users/15401 2008-11-25T10:11:30Z 2008-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#316957 2 Answer by devio for Table and Index size in SQL Server devio http://stackoverflow.com/users/21336 2008-11-25T10:38:25Z 2008-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#635213 1 Answer by Rob Garrison for Table and Index size in SQL Server Rob Garrison http://stackoverflow.com/users/76740 2009-03-11T16:04:02Z 2009-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#1875918 0 Answer by Zachary Burt for Table and Index size in SQL Server Zachary Burt http://stackoverflow.com/users/104461 2009-12-09T18:39:36Z 2009-12-09T18:39:36Z <p>You may also find the stored procedure <code>sp_helpdb</code> useful</p>