Presentation is loading. Please wait.

Presentation is loading. Please wait.

1/22/20091 Study the methods of first, second, third, Boyce-Codd, fourth and fifth normal form for relational database design, in order to eliminate data.

Similar presentations


Presentation on theme: "1/22/20091 Study the methods of first, second, third, Boyce-Codd, fourth and fifth normal form for relational database design, in order to eliminate data."— Presentation transcript:

1 1/22/20091 Study the methods of first, second, third, Boyce-Codd, fourth and fifth normal form for relational database design, in order to eliminate data redundancy and update abnormality. Lecture 3 on Data Normalization

2 1/22/20092 Normalization Theory Refine database design to eliminate abnormalities (irregularities) of manipulating database

3 1/22/20093 1NF, 2NF and 3NF Built around the concept of normal forms –Normal form: Contains atomic values only –All normalized relations are in 1NF –2NF is the subset of 1NF, 3NF is the subset of 2NF and so on … –3NF is more desirable than 2NF, 2NF is more desirable than 1NF

4 1/22/20094 BCNF, 4NF and 5NF(PJNF) Boyce-Codd Normal Form –A stronger form of 3NF –Every BCNF is also 3NF, but some 3NF are not BCNF 4NF and 5NF –Defined recently –Deal with multi-valued dependency (MVD) and join dependency (JD)

5 1/22/20095 Relationship between Normal Forms Universe of relations 1NF relations 2NF relations 3NF relations BCNF relations 4NF relations 5NF/PJNF relations

6 1/22/20096 First Normal Form A relation is in 1NF if each attribute contains only one value (not a set of values) The primary key (PK) can not be null

7 1/22/20097 First Normal Form S#S-nameEnrollments S1BrownC1 Math C2 Chem C3 Phys S2SmithC2 Chem C3 Phys C4 Math S3BrownC2 Chem C3 Phys Is this relation in 1NF? Relation STUDENT-A

8 1/22/20098 First Normal Form S#S-nameEnrollments S1BrownC1 Math C2 Chem C3 Phys S2SmithC2 Chem C3 Phys C4 Math S3BrownC2 Chem C3 Phys NO!!! Elements in the domain Enrollments are not atomic Could be split into two domains: C# and C- Name Relation STUDENT-B

9 1/22/20099 First Normal Form Enrollments is split into C# and C-Name Use S# and C# as a compound PK A student may attend several courses and a course may have several students So S# and C# has a m:n mapping S#S-NameC#C-Name S1BrownC1Math S1BrownC2Chem S1BrownC3Phys S2SmithC2Chem S2SmithC3Phys S2SmithC4Math S3BrownC2Chem S3BrownC3Phys Relation STUDENT-B

10 1/22/200910 Functional Dependency (FD) Attribute Y of relation R is functionally dependent on attribute X of R  each value of X is associated with exactly one value of Y Denoted by X  Y In the relation STUDENT-B: –S#  S-Name –C#  C-Name –S#, C#  0

11 1/22/200911 Anomalies using 1NF 1NF relations require less complicated application to operate as opposed to unnormalized relations Anomalies in insert: –Since PK is composed of C# and S#, both details of student and course must be known before inserting a entry –Eg: to add a course, at least one student is enrolled

12 1/22/200912 Anomalies using 1NF Anomalies in delete: –If all students attending a particular course are deleted, the course will not be found in the database Anomalies in update: –Redundancy of S-Name and C-Name –Increase storage space and effort to modify data item –If a course is modified, all tuples containing that course must be updated

13 1/22/200913 Second Normal Form A relation is in 2NF if it is in 1NF and every non- PK attribute is fully functionally dependant on the PK In the relation STUDENT-B –PK: C#, S# –Non-PK attribute: C-Name, S-Name –C#, S#  S-Name –S#  S-Name –Since S-Name is only partially dependent on the PK, relation Student-B is not in 2NF

14 1/22/200914 Second Normal Form All of them are in 2NF as none of them has partial dependency Original information can be reconstructed by natural join operation S#S- Name S1Brown S2Smith S3Brown C#C-Name C1Math C2Chem C3Phys C4Math S#C# S1C1 S1C2 S1C3 S2C2 S2C3 S2C4 S3C2 S3C3 Relation STUDENT Relation COURSE Relation SC

15 1/22/200915 Anomalies in 2NF Suppose we have the relations PRODUCT, MACHINE and EMPLOYEE P#  M# P#  E# M#  E# The tuple (P1, M1, E1) means product P1 is manufactured on machine M1 which is operated by employee E1

16 1/22/200916 Anomalies in 2NF Anomalies in insert: –It is not possible to store the fact that which machine is operated by which employee without knowing at least one product produced by this machine Anomalies in delete: –If an employee is fired the fact that which machine he operated and what product that machine produced are also lost

17 1/22/200917 Anomalies in 2NF Anomalies in update: –If one employee is assigned to operate another machine then several tuples have to be updated as well

18 1/22/200918 Third Normal Form A relation is in 3NF if it is in 2NF and no non-PK attributes is transitively dependent on the PK In the manufacture relations: –P#  M# and M#  E# implies P#  E# –So P#  E# is a transitive dependency

19 1/22/200919 Third Normal Form P#M#E# P1M1E1 P2M2E3 P3M1E1 P4M1E1 P5M3E2 P6M4E1 P#M# P1M1 P2M2 P3M1 P4M1 P5M3 P6M4 M#E# M1E1 M2E3 M3E2 M4E1 MANUFACTURE R1 R2 No loss of information Insert, delete and update anomalies are eliminated

20 1/22/200920 Boyce/Codd Normal Form A relation is BCNF  every determinant is a candidate key A determinant is an attribute, possibly composite, on which some other attribute is fully functionally dependent

21 1/22/200921 Boyce/Codd Normal Form There exists a relation SJT with attributes S (student), J (subject) and T (teacher). The meaning of SJT tuple is that the specified student is taught the specified subject by the specified teacher. SJT SmithMathProf. White SmithPhysicsProf. Green JonesMathProf. White JonesPhysicsProf. Brown Relation SJT  1.For each subject (J), each student (S) of that subject taught by only one teacher (T): FD: S, J  T  2.Each teacher (T) teaches only one subject (J): FD: T  J  T 3.Each subject (J) is taught by several teacher: MVD: J   T

22 1/22/200922 Boyce/Codd Normal Form There are two determinants: (S, J) and T in functional dependency Anomalies in update: –If the fact that Jones studies physics is deleted, the fact that Professor Brown teaches physics is also lost. It is because T is a determinant but not a candidate key

23 1/22/200923 Boyce/Codd Normal Form SJ SmithMath SmithPhysics JonesMath JonesPhysics TJ Prof. WhiteMath Prof. GreenPhysics Prof. BrownPhysics Relation ST Relation TJ Relations (S, J) and (T, J) are in BCNF because all determinants are candidate keys.

24 1/22/200924 Multi-valued Dependency Given a relation R with attributes A, B and C. The multi-valued dependence R.A  R.B holds  the set of B-values matching a given (A-value, C-value) pair in R depends only on the A-value and is independent of the C-value

25 1/22/200925 Fourth Normal Form A relation is in 4NF  whenever there exists an multi-valued dependence (MVD), say A  B, then all attributes are also functionally dependent on A, i.e. A  X for all attribute X of the relation

26 1/22/200926 Fourth Normal Form CourseTeacherText PhysicsProf. GreenBasic Mechanics PhysicsProf. GreenPrinciples of Optics PhysicsProf. BrownBasic Mechanics PhysicsProf. BrownPrinciples of Optics PhysicsProf. BlackBasic Mechanics PhysicsProf. BlackPrinciples of Optics MathProf. WhiteModern Algebra MathProf. WhiteProjective Geometry Relation CTX (not in 4NF)

27 1/22/200927 Fourth Normal Form A tuple (C, T, X) appears in CTX  course C can be taught by teacher T and uses X as a reference. For a given course, all possible combinations of teacher and text appear – that is, CTX satisfies the constraint: if tuples (C, T1, X1), (C, T2, X2) both appears, then tuples (C, T1, X2), (C, T2, X1) both appears also

28 1/22/200928 Fourth Normal Form CTX contains redundancy CTX is in BCNF as there are no other functional determinants But CTX is not in 4NF as it involves an MVD that is not an FD at all, let alone an FD in which the determinant is a candidate key

29 1/22/200929 Anomalies in insert For example, to add the information that the physics course uses a new text called Advanced Mechanism, it is necessary to create three new tuples, one for each of the three teachers.

30 1/22/200930 Fourth Normal Form CourseTeacher PhysicsProf. Green PhysicsProf. Brown PhysicsProf. Black MathProf. White CourseText PhysicsBasic Mechanics PhysicsPrinciples of Optics MathModern Algebra MathProjective Geometry Relation CT Relation CX 4NF is an improvement over BCNF, in that it eliminates another form of undesirable structure

31 1/22/200931 Fifth Normal Form Join dependency: relation R satisfies the JD (X, Y, … Z)  it is the join of its projections on X, Y, … Z where X, Y, … Z are subsets of the set of attributes of R A relation is in 5NF/PJNF (Projection-join normal form)  every join dependency in R is implied by the candidate keys of R 5NF is the ultimate normal form with respect to projection and join

32 1/22/200932 Fifth Normal Form S#P#J# S1P1J2 S1P2J1 S2P1J1 S1P1J1 S#P# S1P1 S1P2 S2P1 J#S# J2S1 J1S1 J1S2 P#J# P1J2 P2J1 P1J1 S#P#J# S1P1J2 S1P1J1 S1P2J1 S2P1J2 S2P1J1 Join over P# Spurious Join over (J#, S#) SPJ is the join of all of its three projections, not of any two! Relation SPJ JSPJ SP

33 1/22/200933 Join Dependence constraint Condition: JD(join dependence) in relation R(S#, P#, J#) Constraint: if R1(S#, P#), R2(P#, J#) and R3(J#, S#) exists then R(S#, P#, J#) exists

34 1/22/200934 Connection Trap Condition: Without JD(join dependence) in relation (S#, P#, J#) Connect trap: if R1(S#, P#), R2(P#, J#) and R3(J#, S#) exists then R(S#, P#, J#) may not exist and R1, R2 and R3 may not be able to be connected

35 1/22/200935 Abnomalies in insert with JD If insert (S1, P1, J2), (S1, P2, J1), and (S2, P1, J1) Then (S1, P1, J1) must also be inserted On the other hand, if one of (S1, P1, J2), (S1, P2, J1) and (S2, P1, J1) is deleted, then (S1, P1, J1) must also be deleted.

36 1/22/200936 Fifth Normal Form (5NF) S#P# S1P1 S1P2 S2P1 J#S# J2S1 J1S1 J1S2 P#J# P1J2 P2J1 P1J1 JSPJSP

37 1/22/200937 Steps in normalization 1.Decompose all data structures that are not 2D into 2D relations of segments 2.Eliminate any partial dependency 3.Eliminate any transitive dependency 4.Eliminate any remaining FD in which determinant is not a candidate key 5.Eliminate any MVD 6.Eliminate any JD that are implied by candidate keys Unnormalized form 1NF 2NF 3NF BCNF 4NF 5NF/PJNF

38 1/22/200938 Lecture Summary The 1NF, 2NF, 3NF, BCNF, 4NF and 5NF are to split the unnormalized table into normalized table(s), and which can eliminate data redundancy and update abnormality. The higher norm form implies the lower norm form.

39 1/22/200939 Review Question Explain the differences between Third Normal Form and Boyce Codd Normal Form with respect to functional dependencies. Why Boyce Codd is called “Strong” third normal form? How can one normalize relations of Third Normal Form into Boyce Codd Normal Form?

40 1/22/200940 Tutorial Question Describe and derive the unnormal, first, second and third normal form for the following unnormal form including 12 data fields with 4 of them are in repeating groups in a table. Identify the functional dependencies of each normal form.

41 1/27/200941 Reading Assignment Chapter 10 Functional Dependencies and Normalization for Relational Databases and Chapter 11 Relational Database Design Algorithms and Further Dependencies of “Fundamentals of Database Systems” fifth edition, by Elmasri & Navathe, Pearson, 2007.


Download ppt "1/22/20091 Study the methods of first, second, third, Boyce-Codd, fourth and fifth normal form for relational database design, in order to eliminate data."

Similar presentations


Ads by Google