We are using Clustered Column store Indexes in multiple tables. To determine Fragmentation,
- When I use sys.dm_db_column_store_row_group_physical_stats I see 0% fragmentation,
- When I query sys.dm_db_index_physical_stats I see 90.10% fragmentation also Index properties show Page fullness as 62.5% and Total fragmentation as 90.10%.
Which fragmentation should be taken as actual fragmentation for my table. And can I remove the fragmentation by rebuild index or rebuild of partitions for column store will work.
Pls suggest.