SQL SERVER 2012 COLUMNSTORE INDEX-之一(2)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-18 20:57 点击:次
	   
	left outer join total_dictionary_size   
    on 1 = 1   
go   
-- size per index   
with segment_size_by_index AS (   
SELECT    
    p.object_id as table_id,   
    p.index_id as index_id,   
    SUM (css.on_disk_size)/1024/1024 AS segment_size_mb   
    www.2cto.com  
FROM sys.partitions AS p    
JOIN sys.column_store_segments AS css    
    ON p.hobt_id = css.hobt_id   
group by p.object_id, p.index_id   
) ,   
dictionary_size_by_index AS (   
SELECT    
    p.object_id as table_id,   
    p.index_id as index_id,   
    SUM (csd.on_disk_size)/1024/1024 AS dictionary_size_mb   
FROM sys.partitions AS p    
JOIN sys.column_store_dictionaries AS csd    
    ON p.hobt_id = csd.hobt_id   
group by p.object_id, p.index_id   
)   
select    
    object_name(s.table_id) table_name,   
    i.name as index_name,   
    s.segment_size_mb,   
    d.dictionary_size_mb,   
    s.segment_size_mb + isnull(d.dictionary_size_mb, 0) as total_size_mb   
from segment_size_by_index s   
JOIN sys.indexes AS i   
    ON i.object_id = s.table_id   
    and i.index_id = s.index_id   
left outer join dictionary_size_by_index d   
    www.2cto.com  
    on s.table_id = s.table_id   
    and s.index_id = d.index_id   
	
	
        
        
        
	
        相关新闻>>
最新推荐更多>>>
              
          - 发表评论
- 
				
- 最新评论 进入详细评论页>>




