Normalization II; Database design case studies - Amazing Indonesia

Latest

Saturday 29 October 2011

Normalization II; Database design case studies

Interrelation dependencies


Consider the relation with schema Bookings(title,theater,city)
Under certain assumptions, it has the FD theater → city, but theater is
not a superkey. The BCNF decomposition yields relation schemas
Bookings1(theater,city) and Bookings2(theater,title).
These schemas and their FDs allow, e.g., the relation instances:


which violate the presumed FD title city → theater.
Thus, there are implicit dependencies between values in different relations.
We cannot check FDs separately in each relation to see such a dependency.

No comments:

Post a Comment