chapter 7 normalization. outline modification anomalies functional dependencies major normal forms...

31
Chapter 7 Chapter 7 Normalization

Upload: noel-greene

Post on 31-Dec-2015

228 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Chapter 7Chapter 7Normalization

Page 2: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Outline Outline

Modification anomaliesFunctional dependenciesMajor normal formsRelationship independencePractical concerns

Page 3: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Modification AnomaliesModification Anomalies

Unexpected side effectInsert, modify, and delete more data than

desiredCaused by excessive redundanciesStrive for one fact in one place

Page 4: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Big University Database TableBig University Database Table

StdSSN StdClass OfferNo OffYear EnrGrade CourseNo CrsDesc

S1 JUN O1 2003 3.5 C1 DB S1 JUN O2 2003 3.3 C2 VB S2 JUN O3 2003 3.1 C3 OO S2 JUN O2 2003 3.4 C2 VB

Page 5: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Functional DependenciesFunctional Dependencies

Constraint on the possible rows in a tableValue neutral like FKs and PKsAssertedUnderstand business rules

Page 6: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

FD DefinitionFD Definition

X YX (functionally) determines YX: left-hand-side (LHS) or determinantFor each X value, there is at most one Y

valueSimilar to candidate keys

Page 7: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

FD Diagrams and ListsFD Diagrams and Lists

StdSSN StdCity StdClass OfferNo OffTerm OffYear EnrGradeCourseNo CrsDesc

StdSSN StdCity, StdClass

OfferNo OffTerm, OffYear, CourseNo, CrsDesc

CourseNo CrsDesc

StdSSN, OfferNo EnrGrade

Page 8: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

FDs in DataFDs in Data

• Prove non existence (but not existence) by looking at data

• Two rows that have the same X value but a different Y value

StdSSN StdClass OfferNo OffYear EnrGrade CourseNo CrsDesc

S1 JUN O1 2003 3.5 C1 DB S1 JUN O2 2003 3.3 C2 VB S2 JUN O3 2003 3.1 C3 OO S2 JUN O2 2003 3.4 C2 VB

Page 9: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

NormalizationNormalization

Process of removing unwanted redundancies

Apply normal forms– Identify FDs– Determine whether FDs meet normal form– Split the table to meet the normal form if there

is a violation

Page 10: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Relationships of Normal FormsRelationships of Normal Forms1NF

2NF

3NF/BCNF

4NF

5NF

DKNF

Page 11: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

1NF1NF

Starting point for SQL:1999 databasesNo repeating groups: flat rows

StdSSN StdClass OfferNo OffYear EnrGrade CourseNo CrsDesc

S1 JUN O1 2003 3.5 C1 DB O2 2003 3.3 C2 VB S2 JUN O3 2003 3.1 C3 OO O2 2003 3.4 C2 VB

Page 12: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Combined Definition of Combined Definition of 2NF/3NF2NF/3NFKey column: candidate key or part of

candidate keyAnalogy to the traditional justice oathEvery non key depends on a key, the

whole key, and nothing but the keyUsually taught as separate definitions

Page 13: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

2NF2NF

Every nonkey column depends on a whole key, not part of a key

Violations– Part of key nonkey– Violations only for combined keys

Page 14: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

2NF Example2NF Example

Many violations for the big university database table– StdSSN StdCity, StdClass– OfferNo OffTerm, OffYear, CourseNo,

CrsDescSplitting the table

– UnivTable1 (StdSSN, StdCity, StdClass) – UnivTable2 (OfferNo, OffTerm, OffYear,

CourseNo, CrsDesc)

Page 15: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

3NF3NF

Every nonkey column depends only on a key not on non key columns

Violations: Nonkey NonkeyAlterative formulation

– No transitive FDs– A B, B C then A C– OfferNo CourseNo, CourseNo CrsDesc

then OfferNo CrsDesc

Page 16: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

3NF Example3NF Example

One violation in UnivTable2– CourseNo CrsDesc

Splitting the table– UnivTable2-1 (OfferNo, OffTerm, OffYear,

CourseNo)– UnivTable2-2 (CourseNo, CrsDesc)

Page 17: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

BCNFBCNF

Every determinant must be a candidate key.

Simpler definitionApply with simple synthesis procedureSpecial cases not covered by 3NF

– Part of key Part of key– Nonkey Part of key– Special cases are not common

Page 18: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

BCNF ExampleBCNF Example

Many violations for the big university database table– StdSSN StdCity, StdClass– OfferNo OffTerm, OffYear, CourseNo– CourseNo CrsDesc

Splitting into four tables

Page 19: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Simple Synthesis ProcedureSimple Synthesis Procedure

1. Eliminate extraneous columns from the LHSs

2. Remove derived FDs 3. Arrange the FDs into groups with each

group having the same determinant. 4. For each FD group, make a table with the

determinant as the primary key.5. Merge tables in which one table contains

all columns of the other table.

Page 20: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Simple Synthesis ExampleSimple Synthesis Example

Begin with FDs shown in Slide 7Step 1: no extraneous columnsStep 2: eliminate OfferNo CrsDescStep 3: already arranged by LHSStep 4: four tables (Student, Enrollment,

Course, Offering)Step 5: no redundant tables

Page 21: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Multiple Candidate KeysMultiple Candidate Keys

Multiple candidate keys do not violate either 3NF or BCNF

Step 5 of the Simple Synthesis Procedure creates tables with multiple candidate keys.

You should not split a table just because it contains multiple candidate keys.

Splitting a table unnecessarily can slow query performance.

Page 22: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Relationship Independence and Relationship Independence and 4NF4NFM-way relationship that can be derived

from binary relationships Split into binary relationshipsSpecialized problem4NF does not involve FDs

Page 23: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Relationship Independence Relationship Independence ProblemProblem

StdSSNStdName

StudentOfferNoOffLocation

Offering

TextNoTextTitle

Textbook

EnrollStd-Enroll

Offer-Enroll

Text-Enroll

Page 24: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Relationship Independence Relationship Independence SolutionSolution

StdSSNStdName

Student

OfferNoOffLocation

Offering

TextNoTextTitle

Textbook

Enroll Orders

Page 25: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Extension to the Relationship Extension to the Relationship Independence SolutionIndependence Solution

StdSSNStdName

StudentOfferNoOffLocation

Offering

TextNoTextTitle

Textbook

Enroll Orders

PurchaseStd-Purch

Offer-Purch

Text-Purch

Page 26: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

MVDs and 4NFMVDs and 4NF

MVD: difficult to identify– A B | C (multi-determines)– A associated with a collection of B and C

values– B and C are independent– Non trivial MVD: not also an FD

4NF: no non trivial MVDs

Page 27: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

MVD RepresentationMVD Representation

A B C A1 B1 C1 A1 B2 C2 A1 B2 C1 A1 B1 C2

A B | C

OfferNo StdSSN TextNo O1 S1 T1 O1 S2 T2 O1 S2 T1 O1 S1 T2

OfferNo StdSSN | TextNo

Given the two rows above the line, the two rows below the line arein the table if the MVD is true.

Page 28: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Higher Level Normal FormsHigher Level Normal Forms

5NF for M-way relationshipsDKNF: absolute normal formDKNF is an ideal, not a practical normal

form

Page 29: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Role of NormalizationRole of Normalization

Refinement– Use after ERD– Apply to table design or ERD

Initial design– Record attributes and FDs– No initial ERD– May reverse engineer an ERD after

normalization

Page 30: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

Normalization ObjectiveNormalization Objective

Update biasedNot a concern for databases without

updates (data warehouses)Denormalization

– Purposeful violation of a normal form– Some FDs may not cause anomalies– May improve performance

Page 31: Chapter 7 Normalization. Outline Modification anomalies Functional dependencies Major normal forms Relationship independence Practical concerns

SummarySummary

Beware of unwanted redundanciesFDs are important constraintsStrive for BCNFUse a CASE tool for large problemsImportant tool of database developmentFocus on the normalization objective