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 qu ...
, a multivalued dependency is a full constraint between two sets of attributes in a relation. In contrast to the
functional dependency In relational database theory, a functional dependency is a constraint between two sets of attributes in a relation from a database. In other words, a functional dependency is a constraint between two attributes in a relation. Given a relation '' ...
, the multivalued dependency requires that certain
tuple In mathematics, a tuple is a finite ordered list (sequence) of elements. An -tuple is a sequence (or ordered list) of elements, where is a non-negative integer. There is only one 0-tuple, referred to as ''the empty tuple''. An -tuple is defi ...
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 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 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 alphat _2 alpha/math>, there exist tuples t _3 and t _4 in r such that: \begin t_1 alpha= t_2 alpha= t_3 alpha= t_4 alpha\ t_1
beta Beta (, ; uppercase , lowercase , or cursive ; grc, βῆτα, bē̂ta or ell, βήτα, víta) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Modern Greek, it represents the voiced labi ...
= t_3
beta Beta (, ; uppercase , lowercase , or cursive ; grc, βῆτα, bē̂ta or ell, βήτα, víta) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Modern Greek, it represents the voiced labi ...
\ t_2
beta Beta (, ; uppercase , lowercase , or cursive ; grc, βῆτα, bē̂ta or ell, βήτα, víta) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Modern Greek, it represents the voiced labi ...
= t_4
beta Beta (, ; uppercase , lowercase , or cursive ; grc, βῆτα, bē̂ta or ell, βήτα, víta) is the second letter of the Greek alphabet. In the system of Greek numerals, it has a value of 2. In Modern Greek, it represents the voiced labi ...
\ 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 or database normalisation (see spelling differences) 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 integrit ...
, fourth normal form requires that for every nontrivial multivalued dependency ''X'' \twoheadrightarrow ''Y'', ''X'' is a
superkey In the relational data model a superkey is a set of attributes that uniquely identifies each tuple of a relation. Because superkey values are unique, tuples with the same superkey value must also have the same non-key attribute values. That is ...
. 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 is an MVD 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