Final - Normalization Flashcards

1
Q

What should the design of a relational schema accomplish?

A

It should be easy to explain its meaning, reduce redundant information in tuples, and reduce NULL values in tuples.

A better schema design minimizes storage use and helps avoid update anomalies.

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

What are update anomalies?

A

Insertion, deletion, and modification issues that can lead to inconsistent data in the database.

Examples include difficulties in adding new employees or departments, losing departments upon deletion of the last instructor, and needing to update multiple tuples for consistency.

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

What is normalization?

A

A top-down design process of decomposing unsatisfactory relations by breaking up their attributes into smaller relations to achieve guidelines.

Normalization aims to reduce redundancy and improve data integrity.

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

What is the First Normal Form (1NF)?

A

The domain of an attribute must include only atomic values, and any attribute in a tuple must be a single value from the domain.

Composite or multivalued attributes are banned in 1NF.

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

What is a functional dependency?

A

A constraint between two sets of attributes where a set X functionally determines a set Y if the value of X uniquely determines Y.

Written as X → Y, it indicates that if K is a key of R, then K functionally determines all attributes in R.

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

What are Armstrong’s Axioms?

A

Inference rules used to determine functional dependencies that are logically implied from a set of given functional dependencies.

Includes rules like trivial FD where X → Y is trivial if Y is a subset of X.

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

What defines a non-prime attribute?

A

An attribute that is not part of any candidate key of the table.

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

What is full functional dependency?

A

A functional dependency Y → Z where removal of any attribute from Y means the dependency does not hold anymore.

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

What is the Second Normal Form (2NF)?

A

A relation R is in 2NF if every non-prime attribute A in R is fully functionally dependent on every candidate key of R.

No non-prime attribute should depend on any proper subset of any candidate key.

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

What is the Third Normal Form (3NF)?

A

A relation R is in 3NF if no non-prime attribute of R is transitively dependent on the primary key.

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

What is transitive functional dependency?

A

An FD X → Z that can be derived from two FDs: X → Y and Y → Z.

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

What is denormalization?

A

The process of reversing normalization to store relations in a lower normal form for speed, while ensuring they are updated.

This can lead to more joins in database queries.

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

What is a remedy for achieving 1NF?

A

Break up multivalued or composite attributes into columns or across rows.

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

What happens if a department’s last instructor is deleted?

A

The department is lost from the database.

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

What should be done if a relation is not in 2NF?

A

Decompose each partial key and its dependent attributes into a new relation.

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

Fill in the blank: A relation R is in 2NF if every non-prime attribute A in R is ______ on every candidate key of R.

A

fully functionally dependent

17
Q

Fill in the blank: A functional dependency Y → Z where removal of any attribute from Y means the FD does not hold anymore is called ______.

A

full functional dependency