Lecture 7

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

description

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. - PowerPoint PPT Presentation

Transcript of Lecture 7

Page 1: Lecture 7

1

Lecture 7

Design Theory for Relational Databases

(part 1)

Slides based on http://infolab.stanford.edu/~ullman/fcdb/aut07/index.html#lecture

CS4416 Database SystemsCS5122 Development of IS 2

Page 2: Lecture 7

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.

Page 3: Lecture 7

3

Functional Dependencies (FD's)

Page 4: Lecture 7

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 }.

Page 5: Lecture 7

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 AB and AC.

There is no splitting rule for left sides. We’ll generally express FD’s with

singleton right sides.

Page 6: Lecture 7

6

Example: FD's

name addr beersLiked manf favBeerJaneway Voyager Bud A.B. WickedAleJaneway Voyager WickedAle Pete’s WickedAleSpock Enterprise Bud A.B. Bud

Because name addr Because name favBeer

Because beersLiked manf

Drinkers(name, addr, beersLiked, manf, favBeer)

Page 7: Lecture 7

7

Example: FD’s (contd.)

Drinkers(name, addr, beersLiked, manf, favBeer)

Reasonable FD’s to assert:1. name addr favBeer

This is the same as name addr and name favBeer.

2. beersLiked manf

Page 8: Lecture 7

8

Example of Bad Design

Drinkers(name, addr, beersLiked, manf, favBeer)

name addr beersLiked manf favBeerJaneway Voyager Bud A.B. WickedAleJaneway ??? WickedAle Pete’s ???Spock Enterprise Bud ??? Bud

Data is redundant, because each of the ???’s can be figuredout by using the FD’s name addr favBeer andbeersLiked manf.

Page 9: Lecture 7

9

This Bad Design AlsoExhibits Anomalies

name addr beersLiked manf favBeerJaneway Voyager Bud A.B. WickedAleJaneway Voyager WickedAle Pete’s WickedAleSpock 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.

Page 10: Lecture 7

10

Keys

Page 11: Lecture 7

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.

Page 12: Lecture 7

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

Page 13: Lecture 7

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}.

Page 14: Lecture 7

14

Where Do Keys Come From?

1. Just assert a key K (usually some sort of id).

The only FD’s are K A for all attributes A.

2. Assert FD’s and deduce the keys by systematic exploration.

Important for normalization (see next lecture).

Page 15: Lecture 7

15

Inferring FD's

Page 16: Lecture 7

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.

Page 17: Lecture 7

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.

Page 18: Lecture 7

18

Y+new Y+

X A

Page 19: Lecture 7

19

Finding All Implied FD’s Simple, Exponential Algorithm

1. For each set of attributes X, compute X +.

2. Add X A for all A in X + ̶ X.3. However, drop XY A whenever we

discover X A. Because XY A follows from X A in

any projection.

Page 20: Lecture 7

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.

Page 21: Lecture 7

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: AB, AC, and BC.

Page 22: Lecture 7

22

Visual Representation of FD's

(optional material)

Page 23: Lecture 7

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.

Page 24: Lecture 7

24

Example: R(A,B,C)

{(1,2,3), (3,4,5)}

{}

{(1,2,3), (3,4,5), (1,3,5)}

{(5,1,1)}

{(1,2,3), (1,2,4)}

Page 25: Lecture 7

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.

Page 26: Lecture 7

26

Example: A -> B for R(A,B)

A B

{(1,2,3), (3,4,5)}

{}

{(1,2,3), (3,4,5), (1,3,5)}

{(5,1,1)}

{(1,2,3), (1,2,4)}

Page 27: Lecture 7

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.

Page 28: Lecture 7

28

Example

ABBC

CDA

Instances satisfyingAB, BC, andCDA

Page 29: Lecture 7

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 Ai surely satisfies Y B. But an instance could satisfy Y B, yet

not be in this intersection.

Page 30: Lecture 7

30

Example

A->B B->CA->C