CS145 Lecture Notes -- Relational Database Design



For all but the very simplest database application, there are many, many different relational database "designs" (schemas) that can be used to store the relevant data. Relational database design is one of the more theoretical topics of CS145, but even it has fairly practical applications.


Functional Dependencies

Example schema:
   Student(ID, name, address, HScode, HSname, HScity, cumGPA, priority)
   Apply(ID, campus, date, major)

Suppose Student.priority is determined by Student.cumGPA.

(show example)






Formally:
   For every pair of tuples t and u in Student:
   if t[cumGPA] = u[cumGPA] then t[priority] = u[priority]
This is a "functional dependency" (FD): a constraint specified with the schema of a relation. Notation for declaring an FD for a relation R:
   A1, A2, ..., Am -> B1, B2, ..., Bn   (commas may be omitted)
states that for every pair of tuples t and u in R: if t[A1,...,Am] = u[A1,...,Am] then t[B1,..,Bn] = u[B1,..,Bn].

We will abbreviate A1, A2, ..., Am as AA (or "A-bar") and B1, B2, ..., Bn as BB (or "B-bar").

(simple abstract example)









Question: What are some functional dependencies for Student besides cumGPA -> priority?








Question: What are some functional dependencies for Apply?








Functional Dependencies and Keys

AA is a key for R if:
  1. AA -> BB, where BB is all attributes of R
  2. no subset of AA satisfies (1), i.e., AA is minimal
(show abstract example)








Subtlety: What if relation R can contain duplicate tuples?



Note that key is required to be minimal; introduce "superkey"


Trivial FD

AA -> BB where BB is a subset of AA

(diagram)







Nontrivial FD

AA -> BB where BB is not a subset of AA

(diagram)







Completely nontrivial FD

AA -> BB with no overlap between AA and BB

(diagram)







=> Most of the time we're interested in completely nontrivial FD's.


Rules for Functional Dependencies

Splitting Rule

If AA -> B1, B2, ..., Bn then AA -> B1, AA -> B2, ..., AA -> Bn

Question: Can we also split the left-hand side?






Combining Rule

If AA -> B1, AA -> B2, ..., AA -> Bn then AA -> B1, B2, ..., Bn

Trivial Dependency Rules

If AA -> BB then AA -> (BB - AA)
If AA -> BB then AA -> (BB U AA)

Transitive Rule

If AA -> BB and BB -> CC then AA -> CC


Closure of Attributes

Given a relation R, a set of FD's for R, and a set of attributes {A1, A2, ..., Am} of R:
   Find all attributes B in R such that A1, A2, ..., Am -> B
This set of attributes is the "closure" and is denoted {A1, A2, ..., Am}+

Algorithm for computing closure:

   start with {A1, A2, ..., Am}
   repeat until no change:
      if current set of attributes includes LHS of a dependency,
      add RHS attributes to the set
(Effectively applies combining and transitive rules until there's no more change.)

Example: closure of {ID, HScode} in Student given FD's:

   ID -> name, address, cumGPA
   cumGPA -> priority
   HScode -> HSname, HScity




Question: How can we exploit closure to test whether a set of attributes is a key?








Related question: How can we find all keys given a set of FD's?






Specifying FD's for a Relation

A set S2 of FD's "follows" from another set S1 of FD's if all relation instances that satisfy S1 also satisfy S2.

Example: apply rules above




When specifying FD's for a relation, we would like to specify a minimal set of completely nontrivial FD's such that all FD's that hold on the relation follow from the dependencies in this set. Sounds hard, but in practice this approach comes naturally.

Question: How can we tell if one FD follows from others?

Example: Does AA -> BB follow from a set S of FD's?





Using FD's to Produce a Good Relational Schema

  1. Start with set of relations
  2. Define FD's (and therefore keys) for them based on real world
  3. Transform relations to "normal form" ("normalize" the relations)
Q: What is a bad relational schema?

A: This one is really bad:

   Apply(ID, name, campus, sport, HScode, HScity)
(Assume students play the same sports at every high school attended.)

Consider "Mary" (ID 123) who is applying to Berkeley and Santa Cruz. She played tennis, basketball, and volleyball at both of her high schools, Gunn (code 26) and Menlo-Atherton (code 28).

Question: How many tuples in the relation?











This relation exhibits three types of "anomalies":
  1. Redundancy
    
    
    
  2. Update Anomaly
    
    
    
  3. Deletion Anomaly
    
    
    
    
Question: What's the "best design" for this information?








Good design:
  1. No anomalies
  2. Can reconstruct all original information
Question: What's the best design if different sports can be played at different high schools?







Relation Decomposition

Goal: "decompose" relations into smaller, better ones as above. Do it automatically with a formal framework based on FD's (and later MVD's).

Definition: R1(A1, ..., Am) / R2(B1, ..., Bn) is a decomposition of R(C1, ..., Ck) if {A1, ..., Am} U {B1, ..., Bn} = {C1, ..., Ck}

(diagram)







Idea of decomposition:
  1. R1 = PROJECT[A1, ..., Am] (R), eliminating duplicates
  2. R2 = PROJECT[B1, ..., Bn] (R), eliminating duplicates
  3. R1 NATURAL-JOIN R2 = R
Note: R is never actually created, it's just a step in the design process.

Example decomposition:

   Apply1(ID, name, campus)
   Apply2(ID, sport, HScode, HScity)
(check criteria for decomposition)




Another example decomposition:

   Apply1(ID, name, HScode, HScity)
   Apply2(name, campus, sport)
(check criteria for decomposition)




Boyce-Codd Normal Form (BCNF)

Defines which decompositions are good ones

Given: relation R and set of FD's for R

Definition: R is in BCNF with respect to its FD's if for every nontrivial FD AA -> BB, AA contains a key.

Question: Why does violating this requirement produce a "bad" relation?







Example:
   Student(ID, name, address, HScode, HSname, HScity, cumGPA, priority)

   FD's: ID -> name, address, cumGPA
         cumGPA -> priority
         HScode -> HSname, HScity

   Key:  ID, HScode

Question: Is the relation in BCNF?



Each violation produces anomalies.


Example:
   Apply(ID, campus, date, major)
Can apply to campus multiple times for different majors, but can only apply to a campus once per day
   FD's: ID, campus, date -> major
   Key:  ID, campus, date

Question: Is the relation in BCNF?



Algorithm for decomposing a relation into BCNF relations:
   Input: relation schema R and set of FD's for R

   (1) compute keys for R based on FD's
   (2) repeat until no more BCNF violations:
         (2a) pick any R' with AA ->> BB that violates BCNF
         (2b) decompose R' into R1(AA,BB) and R2(AA,CC)
              where CC is all attributes in R' except (AA U BB)
         (2c) compute FD's for R1 and R2
         (2d) compute keys for R1 and R2 based on FD's
(diagram)





Question: How can we compute keys in steps (1) and (2d)?




Question: How do we compute FD's in step (2c)?





(run algorithm on Student example)












=> Final decomposed relations may be different depending on which violating FD is chosen in each iteration (step 2(a)), but all decompositions will be in BCNF.

Does BCNF guarantee a good decomposition?

  1. Removes anomalies? Yes

  2. Reconstructs original relation?
With BCNF get:

Multivalued Dependency (MVD)

Definition:

   AA ->> BB is an MVD for relation R if:
   For all tuples t,u in R:
      If t[AA] = u[AA] then there exists a v in R such that:
         (1) v[AA] = t[AA]
         (2) v[BB] = t[BB]
         (3) v[CC] = u[CC] where CC is all attributes in R except (AA U BB)
(show with picture; show implied fourth tuple)









MVD's are also called "tuple-generating dependencies."

Example:

Apply(ID, campus, sport)
Assume all students apply to each campus with all sports.

Question: What are FD's?



Question: What is key?



Question: Is it in BCNF?



Question: What are MVD's?




(show example data to verify)








Intuition: MVD's uncover situations where independent facts related to a certain object are being squished together in one relation.

Trivial MVD

AA ->> BB where BB is a subset of AA or (AA U BB) contains all attributes of R







Nontrivial MVD

AA ->> BB where BB is not a subset of AA and (AA U BB) does not contain all attributes of R


Rules for Multivalued Dependencies

FD-is-an-MVD Rule

If AA -> BB then AA ->> BB

Prove by showing (1), (2), (3) in MVD definition.








Transitive Rule

If AA ->> BB and BB ->> CC then AA ->> CC

Complementation Rule

If AA ->> BB then AA ->> CC where CC is all attributes in R except (AA U BB)

Question: Are there any rules for FD's that do not apply for MVD's?








Fourth Normal Form (4NF)

Given: relation R and set of MVD's for R

Definition: R is in 4NF with respect to its MVD's if for every nontrivial MVD AA ->> BB, AA contains a key.

Note: Since every FD is also an MVD, 4NF implies BCNF

Question: What happens in the MVD definition if AA contains a key?



Algorithm for decomposing a relation into 4NF relations (same idea as BCNF):
   Input: relation schema R and set of FD's and MVD's for R

   (1) compute keys for R based on FD's
   (2) repeat until no more 4NF violations:
         (2a) pick any R' with AA ->> BB that violates 4NF
         (2b) decompose R' into R1(AA,BB) and R2(AA,CC)
              where CC is all attributes in R' except (AA U BB)
         (2c) compute FD's and MVD's for R1 and R2
         (2d) compute keys for R1 and R2 based on FD's

Question: How do we compute MVD's in step (2c)?




(run algorithm on Apply example)