我想获取数据库中每个表的表数据和索引空间:
Table Name Data Space Index Space -------------------------------------------------------
我怎样才能达到这个结果?
此查询将在此列出表占用的总大小-聚集索引,堆和所有非聚集索引:
SELECT s.Name AS SchemaName, t.NAME AS TableName, p.rows AS RowCounts, SUM(a.total_pages) * 8 AS TotalSpaceKB, SUM(a.used_pages) * 8 AS UsedSpaceKB, (SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB FROM sys.tables t INNER JOIN sys.schemas s ON s.schema_id = t.schema_id INNER JOIN sys.indexes i ON t.OBJECT_ID = i.object_id INNER JOIN sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id INNER JOIN sys.allocation_units a ON p.partition_id = a.container_id WHERE t.NAME NOT LIKE 'dt%' -- filter out system tables for diagramming AND t.is_ms_shipped = 0 AND i.OBJECT_ID > 255 GROUP BY t.Name, s.Name, p.Rows ORDER BY s.Name, t.Name
如果要将表空间与索引空间分开,则需要使用AND i.index_id IN (0,1)表空间(index_id = 0是堆空间,index_id = 1是聚集索引的大小=数据页)还是AND i.index_id > 1仅用于索引的空间
AND i.index_id IN (0,1)
index_id = 0
index_id = 1
AND i.index_id > 1