< Previous Challenge - Home - Next Challenge >
- You have to complete Challenge 03 - Queries behavior
Users partitioned the FactInternetSales table by [OrderDateKey] column and are now complaining about performance running a simple query against it. If they run the same query against the old table (not partitioned), performance is good.
You can find all the files for this challnge into the Zip file provided by your coach at this path: ./Resources/Challenge-04/
Learning objectives:
- How partitioning affects performance
- Columnstore Indexes health
Investigate why query against partitioned table is slower than the original one and fix it.
- Open C4_1_Partitioning_CCI.sql and identify why the partitioned table is so slow
- Is the partitioning affecting the Columnstore health ?
- Is the Columnstore index in good shape ?
- Understand when partitions could be helpful and when not
- Deep understanding in Columnstore Index health and how they heavily affect performance
- Beeing able to identify unhealthy Columnstore indexes