Other Index Questions Flashcards
1
Q
What is a ColumnStore Index?
A
Columnstore indexes are the standard for storing and querying large data warehousing fact tables
2
Q
What benefits does a ColumnStore Index give you?
A
- Better data compression for very large tables
- Query Processing give up to 10x faster results
- Handles inserts well
3
Q
What do ColumnStore not do well?
A
Updates and Deletes to data
4
Q
What are the benefits to a B-Tree Index?
A
- keeps keys in sorted order for sequential traversing. *uses a hierarchical index to minimize the number of disk reads.
- uses partially full blocks to speed up insertions and deletions.
5
Q
When is a Hash index useful?
A
With a memory-optimized Table