Chapter 8: Relational Database Design

50
8.1 atabase System Concepts - 6 th Edition Chapter 8: Relational Database Chapter 8: Relational Database Design Design Features of Good Relational Design Decomposition Using Functional Dependencies Functional Dependency Theory Algorithms for Functional Dependencies Database-Design Process Atomic Domains and First Normal Form

description

Chapter 8: Relational Database Design. Features of Good Relational Design Decomposition Using Functional Dependencies Functional Dependency Theory Algorithms for Functional Dependencies Database-Design Process Atomic Domains and First Normal Form. Schema for the university database. - PowerPoint PPT Presentation

Transcript of Chapter 8: Relational Database Design

Page 1: Chapter 8:  Relational Database Design

8.1Database System Concepts - 6th Edition

Chapter 8: Relational Database DesignChapter 8: Relational Database Design

Features of Good Relational Design

Decomposition Using Functional Dependencies

Functional Dependency Theory

Algorithms for Functional Dependencies

Database-Design Process

Atomic Domains and First Normal Form

Page 2: Chapter 8:  Relational Database Design

8.2Database System Concepts - 6th Edition

Schema for the university databaseSchema for the university database

instructor (ID, name, dept_name, salary)

department (dept_name, building, budget)

course (course_id, title, dept_name, credits)

classroom (building, room_number, capacity)

section (course_id, sec_id, semester, year, building, room_number, time_slot_id)

prereq (course_id, prereq_id)

Page 3: Chapter 8:  Relational Database Design

8.3Database System Concepts - 6th Edition

Larger Schemas?Larger Schemas? Suppose we combine instructor and department into inst_dept

Result is possible repetition of information (the amount of budget)

Disadvantage (update anomalies):

Modifying the budget in one tuple but not all tuples leads to inconsistency.

Cannot insert a new department until the first instructor is hired->ID is part of PK.

Deleting the last instructor will lose the department information

刪掉就無 EE資訊

重複

Page 4: Chapter 8:  Relational Database Design

8.4Database System Concepts - 6th Edition

What About Smaller Schemas?What About Smaller Schemas?

Suppose we had started with inst_dept. How would we know to split up (decompose) it into instructor and department?

Intuition: 有密切關係的屬性放在同一個表格 !

Write a rule: “every department (identified by its department name) must have only one building and one budget value”.

Denote as a functional dependency:

dept_name building, budget

In inst_dept, because dept_name is not a candidate key, the building and budget of a department may have to be repeated.

This indicates the need to decompose inst_dept

Not all decompositions are good. Suppose we decompose employee(ID, name, street, city, salary) into

employee1 (ID, name)

employee2 (name, street, city, salary)

The next slide shows how we lose information -- we cannot reconstruct the original employee relation -- and so, this is a lossy decomposition.

Page 5: Chapter 8:  Relational Database Design

8.5Database System Concepts - 6th Edition

A Lossy DecompositionA Lossy Decomposition

Page 6: Chapter 8:  Relational Database Design

8.6Database System Concepts - 6th Edition

Example of Lossless-Join DecompositionExample of Lossless-Join Decomposition

Lossless join decomposition

Decomposition of R = (A, B, C)R1 = (A, B) R2 = (B, C)

A B

12

A

B

12

r B,C(r)

A (r) B (r)A B

12

C

AB

B

12

C

AB

C

AB

A,B(r)

Page 7: Chapter 8:  Relational Database Design

8.7Database System Concepts - 6th Edition

Goal — Devise a Theory for the FollowingGoal — Devise a Theory for the Following

Decide whether a particular relation R is in “good” form.

In the case that a relation R is not in “good” form, decompose it into a set of relations {R1, R2, ..., Rn} such that

each relation is in good form

the decomposition is a lossless-join decomposition

Our theory is based on functional dependencies

Constraints on the set of legal relations.

Require that the value for a certain set of attributes determines uniquely the value for another set of attributes.

A functional dependency is a generalization of the notion of a key.

Page 8: Chapter 8:  Relational Database Design

8.8Database System Concepts - 6th Edition

Functional Dependencies (Cont.)Functional Dependencies (Cont.)

Let R be a relation schema

R and R The functional dependency

holds on R if and only if for any legal relations r(R), whenever any two tuples t1 and t2 of r agree on the attributes , they also agree on the attributes . That is,

t1[] = t2 [] t1[ ] = t2 [ ] Example: Consider R(A,B, C, D ) with the following instance of r.

On this instance, A C is satisfied, but C A is not satisfied.

Page 9: Chapter 8:  Relational Database Design

8.9Database System Concepts - 6th Edition

Example of Functional DependenciesExample of Functional Dependencies

inst_dept (ID, name, salary, dept_name, building, budget ).

每一個老師 (ID)只有一個名字和一份薪水ID name, salary

每一個系 (dept_name) 只位於一棟建築物和只有一個預算dept_name building, budget

一個系有很多老師 dept_name ID 不成立 !

一棟建築物有很多系 building dept_name 不成立 !

如果一個老師只能隸屬一個系ID dept_name

如果一個老師能隸屬多個系ID dept_name 不成立 !

Page 10: Chapter 8:  Relational Database Design

8.10Database System Concepts - 6th Edition

Functional Dependencies (Cont.)Functional Dependencies (Cont.)

Functional dependencies allow us to express constraints that cannot be expressed using superkeys.

K is a superkey for relation schema R if and only if K R Example: employee = (ID, name, street, city, salary),

ID is a superkey iff ID-> ID, name, street, city, salary K is a candidate key for R if and only if

K R, and for no K, R

Note: A specific instance of a relation schema may satisfy a functional dependency even if the functional dependency does not hold on all legal instances.

For example, a specific instance of classroom may, by chance, satisfy room_number capacity.

Page 11: Chapter 8:  Relational Database Design

8.11Database System Concepts - 6th Edition

Use of Functional DependenciesUse of Functional Dependencies

We use functional dependencies to:

test relations to see if they are legal under a given set of functional dependencies.

If a relation r is legal under a set F of functional dependencies, we say that r satisfies F.

specify constraints on the set of legal relations

We say that F holds on R if all legal relations on R satisfy the set of functional dependencies F.

Page 12: Chapter 8:  Relational Database Design

8.12Database System Concepts - 6th Edition

Functional Dependencies (Cont.)Functional Dependencies (Cont.)

A functional dependency is trivial if it is satisfied by all instances of a relation

Example: (see page 8.3)

dept_name, building dept_name

name name

In general, is trivial if

Given a set F of functional dependencies, there are certain other functional dependencies that are logically implied by F.

For example: If A B and B C, then we can infer that A C

(see page 8.49)

The set of all functional dependencies logically implied by F is the closure of F.

We denote the closure of F by F+.

F+ is a superset of F.

Page 13: Chapter 8:  Relational Database Design

8.13Database System Concepts - 6th Edition

Boyce-Codd Normal FormBoyce-Codd Normal Form

is trivial (i.e., )

is a superkey for R

A relation schema R is in BCNF with respect to a set F of functional dependencies if for all functional dependencies in F+ of the form

where R and R, at least one of the following holds:

Example schema not in BCNF (see page 8.3):

instr_dept (ID, name, salary, dept_name, building, budget )

because dept_name building, budgetholds on instr_dept, but dept_name is not a superkey

Page 14: Chapter 8:  Relational Database Design

8.14Database System Concepts - 6th Edition

Decomposing a Simple non-BCNF Schema Decomposing a Simple non-BCNF Schema

Suppose we have a schema R and a non-trivial dependency causes a violation of BCNF.

We decompose R into:

• (U )

• ( R - )

• 注意 : 課本用 R - ( - ) ,是當 和有交集時 , 需要減掉,講義裡我們直接用 以簡化公式。

In our example, = dept_name = building, budget

and inst_dept is replaced by (U ) = ( dept_name, building, budget ) <- department relation ( R - ) = ( ID, name, salary, dept_name ) <- instructor relation

For a complex schema, we might need to decompose for many steps. The complete algorithm will be given later.

Page 15: Chapter 8:  Relational Database Design

8.15Database System Concepts - 6th Edition

BCNF and Dependency PreservationBCNF and Dependency Preservation

Sometimes, to achieve BCNF, we will force attributes in one functional dependency represented in different schemas.

( 課本稱這叫違反 dependency preservation).

Because it is not always possible to achieve both BCNF and dependency preservation, we consider a weaker normal form, known as third normal form.

Example:

Given schema: dept_advisor(s_ID, i_ID, dept_name),

and functional dependencies:

{i_ID->dept_name ; s_ID, dept_name -> i_ID}

PS: s_ID, dept_name is a primary key. 學生可以多系 , 老師只能一系 .

After the BCNF decomposition, we get

(s_ID, i_ID) and (i_ID, dept_name)

Note that s_ID, dept_name, i_ID are represented in two schemas.

Page 16: Chapter 8:  Relational Database Design

8.16Database System Concepts - 6th Edition

Third Normal FormThird Normal Form

A relation schema R is in third normal form (3NF) if for all:

in F+

at least one of the following holds:

is trivial (i.e., )

is a superkey for R

Each attribute A in is contained in a candidate key for R.

此處的意思是 , A 被 所決定 , 也被某個 CK 所決定 .

PS: 課本是 - .

(NOTE: each attribute may be in a different candidate key)

If a relation is in BCNF, it is in 3NF (since in BCNF one of the first two conditions above must hold).

Third condition is a minimal relaxation of BCNF to ensure dependency preservation.

Page 17: Chapter 8:  Relational Database Design

8.17Database System Concepts - 6th Edition

3NF Example3NF Example

Relation dept_advisor:

dept_advisor: (s_ID, i_ID, dept_name)F = {s_ID, dept_name i_ID ; i_ID dept_name}

Two candidate keys: {s_ID, dept_name} and {i_ID, s_ID}

R is in 3NF

s_ID, dept_name i_ID

– s_ID, dept_name is a superkey

i_ID dept_name

– dept_name is contained in a candidate key

Note: We can get all the candidate keys based on the definition in page 8.9 and attribute closure, which will be taught later.

Page 18: Chapter 8:  Relational Database Design

8.18Database System Concepts - 6th Edition

Goals of NormalizationGoals of Normalization

Let R be a relation scheme with a set F of functional dependencies.

Decide whether a relation scheme R is in “good” form.

In the case that a relation scheme R is not in “good” form, decompose it into a set of relation scheme {R1, R2, ..., Rn} such that

each relation scheme is in good form

the decomposition is a lossless-join decomposition

Preferably, the decomposition should be dependency preserving. Functional-Dependency Theory

The formal theory that tells us which functional dependencies are implied logically by a given set of functional dependencies.

We then develop algorithms to generate lossless decompositions into BCNF and 3NF

Page 19: Chapter 8:  Relational Database Design

8.19Database System Concepts - 6th Edition

Closure of a Set of Functional Closure of a Set of Functional DependenciesDependencies

The set of all functional dependencies logically implied by F is the closure of F.

We denote the closure of F by F+.

We can find F+, the closure of F, by repeatedly applying Armstrong’s Axioms:

if , then (reflexivity)

if , then (augmentation)

if , and , then (transitivity)

A B C D

A1 B1 C1 D1

A1 B1 C1 D2

A2 B2 C2 D3

B->C => AB->AC

Page 20: Chapter 8:  Relational Database Design

8.20Database System Concepts - 6th Edition

ExampleExample R = (A, B, C, G, H, I)

F = { A B A CCG HCG I B H}

some members of F+

A H

by transitivity from A B and B H

AG I

by augmenting A C with G, to get AG CG and then transitivity with CG I

CG HI

by augmenting CG I to infer CG CGI,

and augmenting of CG H to infer CGI HI,

and then transitivity

Page 21: Chapter 8:  Relational Database Design

8.21Database System Concepts - 6th Edition

Closure of Functional Dependencies Closure of Functional Dependencies (Cont.)(Cont.)

Additional rules:

If holds and holds, then holds (union)

Example: CG H, CG I => CG-> HI

If holds, then holds and holds (decomposition)

Proof: , =>

If holds and holds, then holds (pseudotransitivity)

Example: A C, CG I => AG->I

The above rules can be inferred from Armstrong’s axioms.

Page 22: Chapter 8:  Relational Database Design

8.22Database System Concepts - 6th Edition

※ ※ Procedure for Computing FProcedure for Computing F+ +

To compute the closure of a set of functional dependencies F:

F + = Frepeat

for each functional dependency f in F+

apply reflexivity and augmentation rules on f add the resulting functional dependencies to F +

for each pair of functional dependencies f1and f2 in F +

if f1 and f2 can be combined using transitivity then add the resulting functional dependency to F +

until F + does not change any further

NOTE: We shall see an alternative procedure for this task later

Page 23: Chapter 8:  Relational Database Design

8.23Database System Concepts - 6th Edition

Closure of Attribute SetsClosure of Attribute Sets

Given a set of attributes define the closure of under F (denoted by +) as the set of attributes that are functionally determined by under F

Algorithm to compute +, the closure of under F

result := ;while (changes to result) do

for each in F dobegin

if result then result := result end

PS: result, result , =>

Page 24: Chapter 8:  Relational Database Design

8.24Database System Concepts - 6th Edition

Example of Attribute Set ClosureExample of Attribute Set Closure R = (A, B, C, G, H, I) F = {A B

A C CG HCG IB H}

(AG)+

1. result = AG

2. result = ABCG (A C and A B)

3. result = ABCGH (CG H and CG AGBC)

4. result = ABCGHI (CG I and CG AGBCH) Is AG a candidate key? (see page 8.9)

1. Is AG a super key?

1. Does AG R? == Is (AG)+ R

2. Is any subset of AG a superkey?

1. Does A R? == Is (A)+ R

2. Does G R? == Is (G)+ R

Page 25: Chapter 8:  Relational Database Design

8.25Database System Concepts - 6th Edition

Uses of Attribute ClosureUses of Attribute Closure

There are several uses of the attribute closure algorithm:

Testing for superkey:

To test if is a superkey, we compute +, and check if + contains all attributes of R.

Testing functional dependencies

To check if a functional dependency holds (or, in other words, is in F+), just check if +.

That is, we compute + by using attribute closure, and then check if it contains .

Computing closure of F

For each R, we find the closure +, and for each S +, we output a functional dependency S.

Page 26: Chapter 8:  Relational Database Design

8.26Database System Concepts - 6th Edition

Lossless-join DecompositionLossless-join Decomposition

For the case of R = (R1, R2), we require that for all possible relations r on schema R

r = R1 (r ) R2 (r )

A decomposition of R into R1 and R2 is lossless join if at least one of the following dependencies is in F+: (see page 8.6)

R1 R2 R1

R1 R2 R2

In other words, if R1 R2 forms a superkey of either R1 or R2, the decomposition of R is a lossless decomposition. (see page 8.13)

Page 27: Chapter 8:  Relational Database Design

8.27Database System Concepts - 6th Edition

ExampleExample R = (A, B, C), F = {A B, B C)

Key = {A}. R is not in BCNF

Decomposition 1: R1 = (A, B), R2 = (B, C)

Lossless-join decomposition:

R1 R2 = {B} and B BC

Dependency preserving (see page 8.14)

Decomposition 2: R1 = (A, B), R2 = (A, C)

Lossless-join decomposition:

R1 R2 = {A} and A AB

Not dependency preserving

Exercise:

Decomposing inst_dept(ID, name, dept_name, salary, building, budget) into instructor (ID, name, dept_name, salary) and department (dept_name, building, budget) is a lossless decomposition.

Why?

Page 28: Chapter 8:  Relational Database Design

8.28Database System Concepts - 6th Edition

Testing for BCNFTesting for BCNF

To check if a non-trivial dependency causes a violation of BCNF (see page 8.12)

1. compute + (the attribute closure of ), and

2. verify that it includes all attributes of R, that is, it is a superkey of R.

Simplified test: To check if a relation schema R is in BCNF, it suffices to check only the dependencies in the given set F for violation of BCNF, rather than checking all dependencies in F+.

If none of the dependencies in F causes a violation of BCNF, then none of the dependencies in F+ will cause a violation of BCNF either.

Page 29: Chapter 8:  Relational Database Design

8.29Database System Concepts - 6th Edition

Testing Decomposition for BCNFTesting Decomposition for BCNF

However, simplified test using only F is incorrect when testing a relation in a decomposition of R

Consider R = (A, B, C, D, E), with F = { A B, BC D}

Decompose R into R1 = (A, B) and R2 = (A, C, D, E)

Neither of the two dependencies in F contain only attributes from (A,C,D,E), so we might be mislead into thinking R2 satisfies BCNF.

In fact, dependency AC D in F+ shows R2 is not in BCNF.

We have to decompose R2 into (A, C, D) and (A, C, E)

To check if a relation Ri in a decomposition of R is in BCNF,

test Ri for BCNF with respect to the restriction of F+ to Ri (that is, all FDs in F+ that contain only attributes from Ri)

Example: (only use transitivity 和 pseudotransitivity to compute F+}

F+ = {A B, BC D, AC D } restriction of F+ to R1 = { A B}

restriction of F+ to R2 = {AC D }

Page 30: Chapter 8:  Relational Database Design

8.30Database System Concepts - 6th Edition

BCNF Decomposition AlgorithmBCNF Decomposition Algorithm

result := {R };done := false;compute F +; ( 主要應用 transitivity 和 pseudotransitivity 兩條法則 )while (not done) do

if (there is a schema Ri in result that is not in BCNF)then begin

let be a nontrivial functional dependency that holds on Ri such that Ri is not in F +; result := (result – Ri ) (Ri – ) (, );

endelse done := true;

Note: each Ri is in BCNF, and decomposition is lossless-join.

(see page 8.13)

Page 31: Chapter 8:  Relational Database Design

8.31Database System Concepts - 6th Edition

Example of BCNF DecompositionExample of BCNF Decomposition

class (course_id, title, dept_name, credits, sec_id, semester, year, building, room_number, capacity, time_slot_id)

Functional dependencies: course_id→ title, dept_name, credits building, room_number→capacity course_id, sec_id, semester, year→building, room_number,

time_slot_id F +( 應用 transitivity 和 pseudotransitivity 兩條法則 ) 多增加下面法則

course_id, sec_id, semester, year→, time_slot_id, capacity BCNF Decomposition:

course_id→ title, dept_name, credits holds but course_id is not a superkey.

We replace class by: course(course_id, title, dept_name, credits) class-1 (course_id, sec_id, semester, year, building,

room_number, capacity, time_slot_id)

Page 32: Chapter 8:  Relational Database Design

8.32Database System Concepts - 6th Edition

Example of BCNF Decomposition (Cont.)Example of BCNF Decomposition (Cont.)

course is in BCNF

How do we know this?

building, room_number→capacity holds on class-1

but {building, room_number} is not a superkey for class-1.

We replace class-1 by:

classroom (building, room_number, capacity)

section (course_id, sec_id, semester, year, building, room_number, time_slot_id)

classroom and section are in BCNF.

Final decomposition: course, classroom, section.

Page 33: Chapter 8:  Relational Database Design

8.33Database System Concepts - 6th Edition

Third Normal Form: MotivationThird Normal Form: Motivation

There are some situations where

BCNF is not dependency preserving, and

We hope all the related attributes are represented in the same relation.

Solution: define a weaker normal form, called Third Normal Form (3NF) (see page 8.15)

Allows some redundancy (see the next page)

There is always a lossless-join, dependency-preserving decomposition into 3NF.

Page 34: Chapter 8:  Relational Database Design

8.34Database System Concepts - 6th Edition

Redundancy in 3NFRedundancy in 3NF

Example

dept_advisor (s_ID, i_ID, dept_name)

F = {s_ID, dept_name i_ID ; i_ID dept_name}

Example of problems due to redundancy in 3NF (see page 8.3)

repetition of information (e.g., the relationship “l1, CS”)

need to use null values (e.g., to represent the relationship “l2, EE” where there is no corresponding value for s_ID).

s_IDs1

s2

s3

s1null

i_IDl1

l1

I1

l3l2

dept_nameCS

CS

CSMAEE

s_ID

s1

s2

s3

s1

i_ID

l1l1I1

l3

i_ID

l1l3l2

dept_name

CSMAEE

3 N F

B C N F

Page 35: Chapter 8:  Relational Database Design

8.35Database System Concepts - 6th Edition

Testing for 3NFTesting for 3NF

Optimization: Need to check only FDs in F, need not check all FDs in F+.

Use attribute closure to check for each dependency , if is a superkey.

If is not a superkey, we have to verify if each attribute in is contained in a candidate key of R

this test is rather more expensive, since it involve finding candidate keys

The 3NF decomposition algorithm is more complex than the BCNF decomposition algorithm.

Same as testing for BCNF, to check if a relation Ri in a decomposition of R is in 3NF,

test Ri for 3NF with respect to the restriction of F+ to Ri (that is, all FDs in F+ that contain only attributes from Ri)

Page 36: Chapter 8:  Relational Database Design

8.36Database System Concepts - 6th Edition

3NF Decomposition Algorithm3NF Decomposition Algorithm

Result := {R };done := false;compute F +; ( 主要應用 transitivity 和 pseudotransitivity 兩條法則 )while (not done) do

if (there is a schema Ri in result that is not in 3NF) then begin let be a nontrivial functional dependency that

holds on Ri such that Ri is not in F +, and some attribute A in is not contained in any

candidate key for R; result := (result – Ri ) (Ri – ) (, ); endelse done := true;

Note: This algorithm does not always achieve dependency preserving. The algorithm in the page 8.37 ensures:

each relation schema Ri is in 3NF

decomposition is dependency preserving and lossless-join

Page 37: Chapter 8:  Relational Database Design

8.37Database System Concepts - 6th Edition

Example of 3NF DecompositionExample of 3NF Decomposition class (course_id, title, dept_name, credits, sec_id, semester, year,

building, room_number, capacity, time_slot_id) Functional dependencies:

course_id→ title, dept_name, credits building, room_number→capacity course_id, sec_id, semester, year→building, room_number,

time_slot_id A candidate key {course_id, sec_id, semester, year}. 3NF decomposition

course_id→ title, dept_name, credits holds but course_id is not a superkey. title (or dept_name, credits) is not contained in the candidate key

We replace class by: course(course_id, title, dept_name, credits) class-1 (course_id, sec_id, semester, year, building,

room_number, capacity, time_slot_id)

The following step is similar, and the result is the same as that of BCNF decomposition

Page 38: Chapter 8:  Relational Database Design

8.38Database System Concepts - 6th Edition

※ ※ Dependency-preserving lossless-join Dependency-preserving lossless-join decomposition into 3NFdecomposition into 3NF

Let Fc be a canonical cover for F;i := 0;for each functional dependency in Fc do

i := i + 1;Ri :=

if none of the schemas Rj, 1 j i contains a candidate key for Rthen

i := i + 1;Ri := any candidate key for R;

/* Optionally, remove redundant relations */

repeatif any schema Rj is contained in another schema Rk

then /* delete Rj */ Rj := Ri; I := i-1;

until no more Rj can be deleted

return (R1, R2, ..., Ri)

Note: This algorithm is also called Note: This algorithm is also called 3NF Synthesis Algorithm3NF Synthesis Algorithm

Page 39: Chapter 8:  Relational Database Design

8.39Database System Concepts - 6th Edition

※ ※ Canonical CoverCanonical Cover

Sets of functional dependencies may have redundant dependencies that can be inferred from the others

For example: A C is redundant in: {A B, B C, A C}

Parts of a functional dependency may be redundant

E.g.: on RHS: {A C, AB CD} can be simplified to {A C, AB D}

– 右邊的 C 可拿掉 E.g.: on LHS: {A C, AB C} can be simplified to

{A C}

– 左邊的 B 可拿掉 原因: A-C, AB->A => AB->C ,正式說明在下一頁

Intuitively, a canonical cover of F is a “minimal” set of functional dependencies equivalent to F, having no redundant dependencies or redundant parts of dependencies

Page 40: Chapter 8:  Relational Database Design

8.40Database System Concepts - 6th Edition

※ ※ Canonical Cover Canonical Cover (cont)(cont)

Consider a set F of functional dependencies and the functional dependency in F.

LHS: Attribute A is extraneous in , if A and F logically implies (F – { }) {( – A) }.

RHS: Attribute A is extraneous in , if A and the set of functional dependencies (F – { }) { ( – A)} logically implies F.

A canonical cover for F is a set of dependencies Fc such that

F logically implies all dependencies in Fc, and

Fc logically implies all dependencies in F, and

No functional dependency in Fc contains an extraneous attribute, and

Each left side of functional dependency in Fc is unique.

Page 41: Chapter 8:  Relational Database Design

8.41Database System Concepts - 6th Edition

※ ※ 3NF Decomposition: An Example3NF Decomposition: An Example

class (course_id, title, dept_name, credits, sec_id, semester, year, building, room_number, capacity, time_slot_id)

Functional dependencies: course_id→ title, dept_name, credits building, room_number→capacity course_id, sec_id, semester, year→building, room_number,

time_slot_id

→ a canonical cover ! A candidate key {course_id, sec_id, semester, year}. 3NF Decomposition:

course (course_id, title, dept_name, credits) classroom (building, room_number, capacity) section (course_id, sec_id, semester, year, building, room_number,

time_slot_id)

→ contains a candidate key of the original schema, done!

Page 42: Chapter 8:  Relational Database Design

8.42Database System Concepts - 6th Edition

Comparison of BCNF and 3NFComparison of BCNF and 3NF

It is always possible to decompose a relation into a set of relations that are in 3NF such that:

the decomposition is lossless

the dependencies are preserved

It is always possible to decompose a relation into a set of relations that are in BCNF such that:

the decomposition is lossless

it may not be possible to preserve dependencies.

Goal for a relational database design is:

BCNF.

Lossless join.

Dependency preservation.

If we cannot achieve this, we accept one of

Lack of dependency preservation

Redundancy due to use of 3NF

Page 43: Chapter 8:  Relational Database Design

8.43Database System Concepts - 6th Edition

Overall Database Design ProcessOverall Database Design Process

We have assumed schema R is given

R could have been generated when converting E-R diagram to a set of tables.

R could have been a single relation containing all attributes that are of interest (called universal relation).

R could have been the result of some ad hoc design of relations.

Normalization breaks R into smaller relations.

Page 44: Chapter 8:  Relational Database Design

8.44Database System Concepts - 6th Edition

ER Model and NormalizationER Model and Normalization

When an E-R diagram is carefully designed, identifying all entities correctly, the tables generated from the E-R diagram should not need further normalization.

However, in a real (imperfect) design, there can be functional dependencies from non-key attributes of an entity to other attributes of the entity Example: an employee entity with attributes

ID, department_name and building, and a functional dependency department_name building

The schema is employee( ID, department_name, building), which is not in 3NF or BCNF.

Good design would have made department an entity

Page 45: Chapter 8:  Relational Database Design

8.45Database System Concepts - 6th Edition

Denormalization for PerformanceDenormalization for Performance

May want to use non-normalized schema for performance

For example, displaying prereqs along with course_id and title requires join of course with prereq

Alternative 1: Use denormalized relation containing attributes of course as well as prereq with all above attributes

faster lookup

extra space and extra execution time for updates

extra coding work for programmer and possibility of error in extra code

Alternative 2: use a materialized view defined as course prereq

Benefits and drawbacks same as above, except no extra coding work for programmer and avoids possible errors

Page 46: Chapter 8:  Relational Database Design

8.46Database System Concepts - 6th Edition

Other Design IssuesOther Design Issues

Some aspects of database design are not caught by normalization

Examples of bad database design, to be avoided:

Instead of total_inst (dept_name, year, size ), use

total_inst _2007(dept_name, size ), total_inst _2008(dept_name, size ), total_inst _2009(dept_name, size ), etc.,

Above are in BCNF, but make querying across years difficult and needs new table each year

dept_year (dept_name, total_inst _2007, total_inst _2008, total_inst _2009)

Also in BCNF, but also makes querying across years difficult and requires new attribute each year.

Is an example of a crosstab, where values for one attribute become column names

Used in spreadsheets, and in data analysis tools

Page 47: Chapter 8:  Relational Database Design

8.47Database System Concepts - 6th Edition

First Normal FormFirst Normal Form

Domain is atomic if its elements are considered to be indivisible units

Examples of non-atomic domains:

Set of names, composite attributes

A relational schema R is in first normal form if the domains of all attributes of R are atomic

Non-atomic values complicate storage and encourage redundant (repeated) storage of data

Example: Set of accounts stored with each customer, and set of owners stored with each account

We assume all relations are in first normal form. (It is not required in Object Based Databases (see page 1.18))

Non-1NF should be normalized as discussed in page 7.39.

ID Phone_number

2222222222

456-7890123-4567

ID Phone_number

22222 {456-7890,123-4567}

Page 48: Chapter 8:  Relational Database Design

8.48Database System Concepts - 6th Edition

First Normal Form (Cont’d)First Normal Form (Cont’d)

Atomicity is actually a property of how the elements of the domain are used.

Example: Strings would normally be considered indivisible

Suppose that students are given identification numbers which are strings of the form CS0012 or EE1127

If the first two characters are extracted to find the department, the domain of identification numbers is not atomic.

Doing so is a bad idea: leads to encoding of information in application program rather than in the database.

Page 49: Chapter 8:  Relational Database Design

8.49Database System Concepts - 6th Edition

※ ※ 2NF (2NF ( 完全函數相依完全函數相依 )) A functional dependency α → β is called a partial dependency if

there is a proper subset γ of α such that γ → β. We say that β is partially dependent on α.

A relation schema R is in second normal form (2NF) if each attribute A in R meets one of the following criteria:

It appears in a candidate key.

It is not partially dependent on a candidate key.

Page 50: Chapter 8:  Relational Database Design

8.50Database System Concepts - 6th Edition

※ ※ 3NF3NF ((不可遞移函數相依)不可遞移函數相依) Let a prime attribute be one that appears in at least one candidate

key.

Let α and β be sets of attributes such that α → β holds, but β → α does not hold. Let A be an attribute that is not in α, is not in β, and for which β → A holds. We say that A is transitively dependent on α.

A relation schema R is in 3NF with respect to a set F of functional dependencies if there are no nonprime attributes A in R for which A is transitively dependent on a key for R.