Final - Performance Tuning Flashcards

1
Q

What is database tuning?

A

The process of continuously adjusting the database design and configurations to optimize performance, including tuning indexes and table structures.

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

What is an index in a database?

A

A: A data structure that provides a pointer to the location of data in a table to improve retrieval speed.

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

What is an ordered index?

A

An index where search keys are stored in a sorted structure, typically using B or B+ trees for efficient range queries.

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

What is a hash index?

A

An index that distributes search keys uniformly across buckets using a hash function, optimized for exact lookups.

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

What is query evaluation?

A

A: The process of choosing and executing a strategy to compute the result of a query efficiently.

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

What is an evaluation plan?

A

A: A plan that specifies the exact algorithms used for query operations and how they are executed.

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

What is SQL tuning?

A

The process of optimizing SQL queries to improve performance by reducing disk accesses, utilizing indexes, and optimizing joins.

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

What is heuristic query optimization?

A

An optimization technique that applies rules to improve query efficiency without guaranteeing the best possible execution plan.

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

What are two primary reasons for using indexes in a database?

A

To speed up data retrieval and reduce query execution time.

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

When should you avoid using indexes?

A

When working with small tables, columns with a high number of NULL values, or columns in queries that return a high percentage of rows.

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

What is the difference between a hash index and a B-tree index?

A

A: A hash index is optimized for exact matches, while a B-tree index is better for range queries.

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

Q: What are some indicators that a SQL query needs tuning?

A

A: High CPU usage, excessive disk reads, full table scans on large tables, and long response times.

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

What is a left-deep join tree, and why is it preferred?

A

A join tree structure where each join operation has a base relation on the right, optimizing execution in query optimizers.

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

What are some best practices for writing efficient SQL queries?

A

Use indexes, avoid unnecessary columns in SELECT, limit full table scans, and optimize joins and WHERE conditions.

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

Q: What is the main difference between a heuristic and a cost-based optimizer?

A

A heuristic optimizer follows fixed rules, while a cost-based optimizer evaluates multiple plans and picks the cheapest one.

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