Final - Query Optimization Flashcards

1
Q

What are the steps involved in query processing?

A

A: A SQL query is scanned, parsed, and validated, producing an immediate form (relational algebra).

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

What is a query plan?

A

A: An execution strategy for a query before execution.

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

: What is the goal of query optimization?

A

A: To find an efficient final query plan for execution.

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

What is a query tree?

A

A tree data structure representing a relational algebra expression with base relations as leaf nodes and relational operators as internal nodes.

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

What are the steps for transforming a query into its canonical form?

A

Combine relations with cartesian products.
Perform one SELECT operation (includes join conditions).
Perform one PROJECT operation.

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

What is a query graph?

A

A: A graph-based representation of a query that does not specify the order of execution.

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

What is heuristic query optimization?

A

Optimization using heuristic rules to find an efficient execution plan without guaranteeing the most optimal one.

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

What are key heuristic rules for query optimization?

A

Perform SELECT and PROJECT early to reduce data size.
Execute the most restrictive SELECT and JOIN operations first.
Convert Cartesian products followed by SELECTs into JOINs.

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

What is an equivalence rule in query optimization?

A

A: A rule that allows replacing one relational algebra expression with an equivalent one.

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

Q: What is join ordering in query optimization?

A

A: The process of determining the best order to join multiple relations in a query.

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

Q: What is join associativity?

A

A: The property that allows reordering joins: (r1 ⋈ r2) ⋈ r3 = r1 ⋈ (r2 ⋈ r3).

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

Q: What is cost-based query optimization?

A

An optimization technique that estimates and compares the costs of different execution plans to choose the cheapest one.

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

How is plan cost estimated in cost-based query optimization?

A

Using statistics about relations, estimated statistics for intermediate results, and cost functions for algorithms.

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