Multivalued Dependency
   HOME

TheInfoList



OR:

In
database theory Database theory encapsulates a broad range of topics related to the study and research of the theoretical realm of databases and database management systems. Theoretical aspects of data management include, among other areas, the foundations of q ...
, a multivalued dependency is a full constraint between two sets of attributes in a
relation Relation or relations may refer to: General uses * International relations, the study of interconnection of politics, economics, and law on a global level * Interpersonal relationship, association or acquaintance between two or more people * ...
. In contrast to the functional dependency, the multivalued dependency requires that certain
tuple In mathematics, a tuple is a finite sequence or ''ordered list'' of numbers or, more generally, mathematical objects, which are called the ''elements'' of the tuple. An -tuple is a tuple of elements, where is a non-negative integer. There is o ...
s be present in a relation. Therefore, a multivalued dependency is a special case of tuple-generating dependency. The multivalued dependency plays a role in the 4NF database normalization. A multivalued dependency is a special case of a join dependency, with only two sets of values involved, i.e. it is a binary join dependency. A multivalued dependency exists when there are at least three attributes (like X,Y and Z) in a
relation Relation or relations may refer to: General uses * International relations, the study of interconnection of politics, economics, and law on a global level * Interpersonal relationship, association or acquaintance between two or more people * ...
and for a value of X there is a well defined set of values of Y and a well defined set of values of Z. However, the set of values of Y is independent of set Z and vice versa.


Formal definition

The formal definition is as follows: Let R be a relation schema and let \alpha \subseteq R and \beta \subseteq R be sets of attributes. The multivalued dependency \alpha \twoheadrightarrow \beta ("\alpha multidetermines \beta") holds on R if, for any legal relation r(R) and all pairs of tuples t _1 and t _2 in r such that t _1
alpha Alpha (uppercase , lowercase ) is the first letter of the Greek alphabet. In the system of Greek numerals, it has a value of one. Alpha is derived from the Phoenician letter ''aleph'' , whose name comes from the West Semitic word for ' ...
t _2
alpha Alpha (uppercase , lowercase ) is the first letter of the Greek alphabet. In the system of Greek numerals, it has a value of one. Alpha is derived from the Phoenician letter ''aleph'' , whose name comes from the West Semitic word for ' ...
/math>, there exist tuples t _3 and t _4 in r such that: \begin t_1
alpha Alpha (uppercase , lowercase ) is the first letter of the Greek alphabet. In the system of Greek numerals, it has a value of one. Alpha is derived from the Phoenician letter ''aleph'' , whose name comes from the West Semitic word for ' ...
= t_2
alpha Alpha (uppercase , lowercase ) is the first letter of the Greek alphabet. In the system of Greek numerals, it has a value of one. Alpha is derived from the Phoenician letter ''aleph'' , whose name comes from the West Semitic word for ' ...
= t_3
alpha Alpha (uppercase , lowercase ) is the first letter of the Greek alphabet. In the system of Greek numerals, it has a value of one. Alpha is derived from the Phoenician letter ''aleph'' , whose name comes from the West Semitic word for ' ...
= t_4
alpha Alpha (uppercase , lowercase ) is the first letter of the Greek alphabet. In the system of Greek numerals, it has a value of one. Alpha is derived from the Phoenician letter ''aleph'' , whose name comes from the West Semitic word for ' ...
\ t_1
beta Beta (, ; uppercase , lowercase , or cursive ; or ) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Ancient Greek, beta represented the voiced bilabial plosive . In Modern Greek, it represe ...
= t_3
beta Beta (, ; uppercase , lowercase , or cursive ; or ) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Ancient Greek, beta represented the voiced bilabial plosive . In Modern Greek, it represe ...
\ t_2
beta Beta (, ; uppercase , lowercase , or cursive ; or ) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Ancient Greek, beta represented the voiced bilabial plosive . In Modern Greek, it represe ...
= t_4
beta Beta (, ; uppercase , lowercase , or cursive ; or ) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Ancient Greek, beta represented the voiced bilabial plosive . In Modern Greek, it represe ...
\ t_1 \setminus(\alpha\cup\beta)= t_4 \setminus(\alpha\cup\beta)\ t_2 \setminus(\alpha\cup\beta)= t_3 \setminus(\alpha\cup\beta)\end Informally, if one denotes by (x,y,z) the tuple having values for \alpha, \beta, R - \alpha - \beta collectively equal to x, y, z, then whenever the tuples (a,b,c) and (a,d,e) exist in r, the tuples (a,b,e) and (a,d,c) should also exist in r. The multivalued dependency can be schematically depicted as shown below: \begin \text & \alpha & \beta & R\setminus(\alpha\cup\beta) \\ t_1 & a_1 .. a_n & b_1 .. b_m & d_1 .. d_k \\ t_2 & a_1 .. a_n & c_1 .. c_m & e_1 .. e_k \\ t_3 & a_1 .. a_n & b_1 .. b_m & e_1 .. e_k \\ t_4 & a_1 .. a_n & c_1 .. c_m & d_1 .. d_k \end


Example

Consider this example of a relation of university courses, the books recommended for the course, and the lecturers who will be teaching the course: Because the lecturers attached to the course and the books attached to the course are independent of each other, this database design has a multivalued dependency; if we were to add a new book to the AHA course, we would have to add one record for each of the lecturers on that course, and vice versa.
Put formally, there are two multivalued dependencies in this relation:  \twoheadrightarrow  and equivalently  \twoheadrightarrow {lecturer}.
Databases with multivalued dependencies thus exhibit redundancy. In
database normalization Database normalization is the process of structuring a relational database in accordance with a series of so-called '' normal forms'' in order to reduce data redundancy and improve data integrity. It was first proposed by British computer scien ...
,
fourth normal form Fourth normal form (4NF) is a normal form used in database normalization. Introduced by Ronald Fagin in 1977, 4NF is the next level of normalization after Boyce–Codd normal form (BCNF). Whereas the second, third, and Boyce–Codd normal form ...
requires that for every nontrivial multivalued dependency ''X'' \twoheadrightarrow ''Y'', ''X'' is a superkey. A multivalued dependency ''X'' \twoheadrightarrow ''Y'' is trivial if ''Y'' is a subset of ''X'', or if X \cup Y is the whole set of attributes of the relation.


Properties

* If \alpha \twoheadrightarrow \beta, Then \alpha \twoheadrightarrow R - \beta * If \alpha \twoheadrightarrow \beta and \gamma \subseteq \delta, Then \alpha \delta \twoheadrightarrow \beta \gamma * If \alpha \twoheadrightarrow \beta and \beta \twoheadrightarrow \gamma, then \alpha \twoheadrightarrow \gamma - \beta The following also involve functional dependencies: * If \alpha \rightarrow \beta, then \alpha \twoheadrightarrow \beta * If \alpha \twoheadrightarrow \beta and \beta \rightarrow \gamma, then \alpha \twoheadrightarrow \gamma - \beta The above rules are sound and complete. * A decomposition of ''R'' into (''X'', ''Y'') and (''X'', ''R'' − ''Y'') is a lossless-join decomposition if and only if ''X'' \twoheadrightarrow ''Y'' holds in ''R''. * Every FD ( functional dependency) is an MVD (multivalued dependency) because if X \rightarrow Y, then swapping Y's between tuples that agree on X doesn't create new tuples. * Splitting Doesn't Hold. Like FD's, we cannot generally split the left side of an MVD. But unlike FD's, we cannot split the right side either, sometimes you have to leave several attributes on the right side. *Closure of a set of MVDs is the set of all MVDs that can be inferred using the following rules ( Armstrong's axioms): **''Complementation'': If X \twoheadrightarrow Y, then X \twoheadrightarrow R - Y **''Augmentation'': If X \twoheadrightarrow Y and Z \subseteq W, then XW \twoheadrightarrow YZ **''Transitivity'': If X \twoheadrightarrow Y and Y \twoheadrightarrow Z, then X \twoheadrightarrow Z - Y **''Replication'': If X \rightarrow Y, then X \twoheadrightarrow Y **''Coalescence'': If X \twoheadrightarrow Y and \exist W s.t. W \cap Y = \empty , W \rightarrow Z, and Z \subseteq Y, then X \rightarrow Z


Definitions

; Full constraint: A constraint which expresses something about ''all'' attributes in a database. (In contrast to an embedded constraint.) That a multivalued dependency is a ''full constraint'' follows from its definition, as where it says something about the attributes R - \beta. ; Tuple-generating dependency: A dependency which explicitly requires certain tuples to be present in the relation. ; Trivial multivalued dependency 1: A multivalued dependency which involves all the attributes of a relation i.e.R = \alpha \cup \beta. A trivial multivalued dependency implies, for tuples t _1 and t _2, tuples t _3 and t _4 which are equal to t _1 and t _2. ; Trivial multivalued dependency 2: A multivalued dependency for which \beta \subseteq \alpha.


References


External links


Multivalued dependencies and a new Normal form for Relational Databases
(PDF) - Ronald Fagin, IBM Research Lab
On the Structure of Armstrong Relations for Functional Dependencies
(PDF) - CATRIEL BEERI (The Hebrew University), MARTIN DOWD (Rutgers University), RONALD FAGIN (IBM Research Laboratory) AND RICHARD STATMAN (Rutgers University)
On a problem of Fagin concerning multivalued dependencies in relational databases
(PDF) - Sven Hartmann, Massey University Data modeling Database constraints