1 / 30

Lecture 7

CS4416 Database Systems CS5122 Development of IS 2. Lecture 7. Design Theory for Relational Databases (part 1). Slides based on http://infolab.stanford.edu/~ullman/fcdb/aut07/index.html#lecture. Relational Schema Design.

beyla
Télécharger la présentation

Lecture 7

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS4416 Database SystemsCS5122 Development of IS 2 Lecture 7 Design Theory for Relational Databases (part 1) Slides based on http://infolab.stanford.edu/~ullman/fcdb/aut07/index.html#lecture

  2. Relational Schema Design • Goal of relational schema design is to avoid anomalies and redundancy. • Update anomaly: one occurrence of a fact is changed, but not all occurrences. • Deletion anomaly : valid fact is lost when a tuple is deleted.

  3. Functional Dependencies (FD's)

  4. Functional Dependencies • XY is an assertion about a relation R that whenever two tuples of R agree on all the attributes of X, then they must also agree on all attributes in set Y. • Say “XY holds in R.” or “X functionally determines Y in R” • Convention: …, X, Y, Z represent sets of attributes; A, B, C,… represent single attributes. • Convention: no set formers in sets of attributes, just ABC, rather than {A,B,C }.

  5. Splitting Right Sides of FD’s • XA1A2…An holds for R exactly when each of X A1, X A2,…, X An hold for R. • Example: A BC is equivalent to AB and AC. • There is no splitting rule for left sides. • We’ll generally express FD’s with singleton right sides.

  6. Because name  favBeer Because name  addr Because beersLiked  manf Example: FD's Drinkers(name, addr, beersLiked, manf, favBeer) name addr beersLiked manf favBeer Janeway Voyager Bud A.B. WickedAle Janeway Voyager WickedAle Pete’s WickedAle Spock Enterprise Bud A.B. Bud

  7. Example: FD’s (contd.) Drinkers(name, addr, beersLiked, manf, favBeer) • Reasonable FD’s to assert: • name  addr favBeer • This is the same as name  addr and name  favBeer. • beersLiked  manf

  8. Example of Bad Design Drinkers(name, addr, beersLiked, manf, favBeer) name addr beersLiked manf favBeer Janeway Voyager Bud A.B. WickedAle Janeway ??? WickedAle Pete’s ??? Spock Enterprise Bud ??? Bud Data is redundant, because each of the ???’s can be figured out by using the FD’s name  addr favBeer and beersLiked  manf.

  9. This Bad Design AlsoExhibits Anomalies name addr beersLiked manf favBeer Janeway Voyager Bud A.B. WickedAle Janeway Voyager WickedAle Pete’s WickedAle Spock Enterprise Bud A.B. Bud • Update anomaly: if Janeway is transferred to Intrepid, • will we remember to change each of her tuples? • Deletion anomaly: If nobody likes Bud, we lose track • of the fact that Anheuser-Busch manufactures Bud.

  10. Keys

  11. Keys of Relations • K is a superkey for relation R if K functionally determines all of R. • K is a key for R if K is a superkey, but no proper subset of K is a superkey.

  12. Example: Superkey Drinkers(name, addr, beersLiked, manf, favBeer) • {name, beersLiked} is a superkey because together these attributes determine all the other attributes. • name  addr favBeer • beersLiked  manf

  13. Example: Key • {name, beersLiked} is a key because neither {name} nor {beersLiked} is a superkey. • name doesn’t  manf; • beersLiked doesn’t  addr. • There are no other keys, but lots of superkeys. • Any superset of {name, beersLiked}.

  14. Where Do Keys Come From? • Just assert a key K (usually some sort of id). • The only FD’s are KA for all attributes A. • Assert FD’s and deduce the keys by systematic exploration. • Important for normalization (see next lecture).

  15. Inferring FD's

  16. Inferring FD’s • We are given FD’s X1A1, X2A2,…, XnAn, and we want to know whether an FD YB must hold in any relation that satisfies the given FD’s. • Example: If AB and BC hold, surely AC holds, even if we don’t say so.

  17. Closure Test • An easier way to test is to compute the closure of Y, denoted Y +, and check if B is an element of in Y +. • Step 1: Start with Y+ = Y. • Step 2: Look for an FD’s XA whose left side X is in the current Y+. • If there is no such FD stop. • If there is such an FD, A to Y+ and repeat Step 2.

  18. X A new Y+ Y+

  19. Finding All Implied FD’s Simple, Exponential Algorithm • For each set of attributes X, compute X+. • Add XA for all A in X +̶X. • However, drop XYA whenever we discover XA. • Because XYA follows from XAin any projection.

  20. A Few Tricks • No need to compute the closure of the empty set or of the set of all attributes. • If we find X + = all attributes, so is the closure of any superset of X.

  21. Example • ABC with FD’s AB and BC. Find all implied FDs. • A +=ABC ; yields AB, AC. • We do not need to compute AB + or AC +. • B +=BC ; yields BC. • C +=C ; yields nothing. • BC +=BC ; yields nothing. • Resulting FDs: AB, AC, and BC.

  22. Visual Representation of FD's (optional material)

  23. Visual Representation of FD's • Imagine the set of all instances of a particular relation. • That is, all finite sets of tuples that have the proper number of components. • Each instance is a point in this space.

  24. Example: R(A,B,C) {(1,2,3), (3,4,5)} {} {(5,1,1)} {(1,2,3), (1,2,4)} {(1,2,3), (3,4,5), (1,3,5)}

  25. An FD is a Subset of Instances • For each FD XA there is a subset of all instances that satisfy the FD. • We can represent an FD by a region in the space. • Trivial FD = an FD that is represented by the entire space. • Example: AA.

  26. Example: A -> B for R(A,B) A  B {(1,2,3), (3,4,5)} {(5,1,1)} {} {(1,2,3), (1,2,4)} {(1,2,3), (3,4,5), (1,3,5)}

  27. Representing Sets of FD’s • If each FD is a set of relation instances, then a collection of FD’s corresponds to the intersection of those sets. • Intersection = all instances that satisfy all of the FD’s.

  28. Instances satisfying AB, BC, and CDA Example AB BC CDA

  29. Implication of FD’s • If an FD YB follows from FD’s X1A1,…,XnAn, then the region in the space of instances for YB must include the intersection of the regions for the FD’s XiAi. • That is, every instance satisfying all the FD’s XiAisurely satisfies YB. • But an instance could satisfy YB, yet not be in this intersection.

  30. Example B->C A->C A->B

More Related