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?
|
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?
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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%. | ||||
|
feedback
|
| ||||
feedback
|
|
There is an extended stored procedure | |||
|
feedback
|