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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What do ColumnStore not do well?

A

Updates and Deletes to data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When is a Hash index useful?

A

With a memory-optimized Table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly