relational database design theory
play

Relational Database Design Theory Informal guidelines for good - PowerPoint PPT Presentation

Relational Database Design Theory Informal guidelines for good relational designs Functional dependencies Normal forms and normalization 1NF, 2NF, 3NF BCNF, 4NF, 5NF Inference rules on functional dependencies Additional


  1. Relational Database Design Theory � Informal guidelines for good relational designs � Functional dependencies � Normal forms and normalization � 1NF, 2NF, 3NF � BCNF, 4NF, 5NF � Inference rules on functional dependencies � Additional properties for relational decompositions � Nonadditive join property � Dependency preservation property 31

  2. 2NF, 3NF � 2NF � 3NF 32

  3. 33

  4. 34

  5. 35

  6. Boyce'Codd Normal Form � BCNF � Difference from 3NF: � 3NF allows A to be a key attribute � 3NF allows A to be a key attribute � Every relation in BCNF is also in 3NF � Most relation schemas that are in 3NF are also in BCNF but not all: 36

  7. 37

  8. 38

  9. 1NF, 2NF, 3NF, BCNF Test on any non' Violations normalization trivial X � A 1NF Multi'valued attributes New relation for each multi'valued attributes 2NF a) X is a super key 1) partial key '> non'key New relation for the or attribute partial key and its b) X is not a key b) X is not a key (partial FD) (partial FD) dependent attributes dependent attributes or c) A is a key attribute 3NF a) X is a super key 1) or Above and or 2) Non'key attribute '> non' New relation for the c) A is a key attribute key attribute non'key attribute and its (transitive FD) dependent attributes BCNF a) X is a super key 1) or Above and 2) or New relation for the 3) non'key '> key attribute non'key attribute and its dependent attributes 39

  10. Relational Database Design Theory � Informal guidelines for good relational designs � Functional dependencies � Normal forms and normalization � 1NF, 2NF, 3NF � BCNF, 4NF, 5NF � Functional dependencies and keys � Additional properties for relational decompositions � Nonadditive join property � Dependency preservation property 40

  11. Keys and Functional Dependencies � �������� � No two distinct tuples in any state � of � can have the same value for SK � Functional dependency: SK � R � ��� � ��� � Superkey of R; and it is minimal (removing any attribute � from � leaves a set of attributes that is not a superkey any more) � Functional dependency: K � R, and for any A in K, K' {A} � R does not hold � Given a set of functional dependencies, can we find the keys of R? 41

  12. Inference Rules for FDs � Armstrong’s inference rules (complete) � Reflexivity rule: if � ⊆ � then � → � � Augmentation rule: if � → � then �� → �� � Transitivity rule: if � → � and � → � then � → � Transitivity rule: if � → � and � → � then � → � � Other rules � Decomposition Rule: if � → �� then: � → � and � → � � Union or Additive Rule: if � → � and � → � then: � → �� � Pseudfotransitive Rule: if � → � and �� → � then: �� → � 42

  13. Inference Rules for FDs � Specify a set of FDs that can be easily determined from attribute semantics � Infer additional FDs using inference rules � The closure of a FD set F � The closure of a FD set F � the set of all FDs that include F as well as all FDs that can be inferred from F 43

  14. Closure of attribute set � The closure of attribute set X under FD set F, denoted as X+ � The set of attributes that are functionally determined by X based on F � How can we computationally find X+ � How can we determine a set of attributes X is a key? 44

  15. Example � SSN + � Dnumber + � Dnumber + � {SSN, Dnumber} + � {SSN, Dnumber, Ename} + 46

  16. Example � SSN + = {SSN, Ename, Bdate, Address, Dnumber, Dname, Dmgr_ssn} Dmgr_ssn} � Dnumber + = {Dnumber, Dname, Dmgr_ssn} � {SSN, Dnumber} + = {SSN, Ename, Bdate, Address, Dnumber, Dname, Dmgr_ssn} � {SSN, Dnumber, Ename} + = {SSN, Ename, Bdate, Address, Dnumber, Dname, Dmgr_ssn} � Which of these attribute sets are superkeys? Keys? 47

  17. Finding Keys based on Attribute Closure � If X + = R, then X is a superkey � If X + = R, and (X'{A}) + != R, then X is a key � How do we find all keys given a FD set F? � How do we find all keys given a FD set F? � How do we find one key given a FD set F? 48

  18. Example � Initialization � K = {SSN, Ename, Bdate, Address, Dnumber, Dname, Dmgr_ssn} � K = {SSN, Ename, Bdate, Address, Dnumber, Dname, Dmgr_ssn} � Decrease one attribute at a time � … � K = {SSN, Dnumber } 50

  19. Relational Database Design Theory � Informal guidelines for good relational designs � Functional dependencies � Normal forms and normalization � 1NF, 2NF, 3NF � BCNF, 4NF, 5NF � Functional dependencies and keys � Additional properties for relational decompositions � ����������� ������������� � Dependency preservation property 51

  20. Dependency Preservation Property � Informally, given a decomposition D of R and a FD set F on R, each FD in F either appear directly in D or could be inferred � Claim 1. it is always possible to find a dependency' preserving decomposition D with respect to F such preserving decomposition D with respect to F such that each relation Ri in D is in 3NF 52

  21. Non'additive Join Property � A decomposition D = {R1, R2, ..., Rm} of R has the ������������������������������������ with respect to the set of FDs F on R if, for ����� legal relation state r, the following holds, where * is the natural join of all the relations in D: * ( π R1 (r), ..., π Rm (r)) = r π π � lossless for “loss of information”, i.e. “ ������������ �������������������� ” � How to test whether a decomposition satisfies the lossless join property? 53

  22. Successive Lossless Join Decomposition � ��������������������������������������� ��� ���������������������������� � If a decomposition D = {R1, R2, ..., Rm} of R has the lossless (non'additive) join property with respect to F � and if a decomposition Di = {Q1, Q2, ..., Qk} of Ri has the lossless (non'additive) join property with respect to the projection of F � then the decomposition D2 = {R1, R2, ..., Ri'1, Q1, Q2, ..., Qk, Ri+1, ..., Rm} of R has the non'additive join property with respect to F. 60

  23. Normalization with BCNF and Lossless Join Property

  24. In Practice � Relational design from ER model or existing tables/reports � Normalization for 3NF or BCNF with lossless join property property � Sometimes normal forms are violated deliberately to achieve better performance (less join operations) 62

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend