Can we have a SQL query which will basically help in viewing table and index sizes in SQl Server.
How SQL server maintains memory usage for tables/indexes?
|
1
|
Can we have a SQL query which will basically help in viewing table and index sizes in SQl Server. How SQL server maintains memory usage for tables/indexes?
|
||
|
|
|
|
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. I created a script which collects the table infos via sp_spaceused and displays a summary in a single record set, sorted by size. |
||
|
|
|
|
EXEC sp_MSforeachtable @command1="EXEC sp_spaceused '?'" |
||
|
|
|
|
sp_spaceused gives you the size of all the indexes combined. If you want the size of each index for a table, use one of these two queries:
The results are usually slightly different but within 1%. |
||
|
|
|
|
There is an extended stored procedure |
||
|
|
|
|
You may also find the stored procedure |
||
|
|