Module-II - DBMS Chapter 1,2
Module-II - DBMS Chapter 1,2
Chapter-1
The Relational Data Model
Relational Model Concepts
Domain: A (usually named) set/universe of atomic values, where by "atomic" we mean
simply that, from the point of view of the database, each value in the domain is
indivisible (i.e., cannot be broken down into component parts).
Attribute: the name of the role played by some value (coming from some domain) in the
context of a relational schema. The domain of attribute A is denoted dom(A).
Tuple: A tuple is a mapping from attributes to values drawn from the respective domains
of those attributes. A tuple is intended to describe some entity (or relationship between
entities) in the miniworld.
Relation: A (named) set of tuples all of the same form (i.e., having the same set of
attributes). The term table is a loose synonym. (Some database purists would argue that a
table is "only" a physical manifestation of a relation.)
Relational Schema: used for describing (the structure of) a relation. E.g., R(A1, A2, ..., An)
says that R is a relation with attributes A1, ... An. The degree of a relation is the number of
attributes it has, here n.
One would think that a "complete" relational schema would also specify the domain
of each attribute.
Characteristics of Relations
Ordering of Tuples: A relation is a set of tuples; hence, there is no order associated with them.
That is, it makes no sense to refer to, for example, the 5th tuple in a relation. When a relation is
depicted as a table, the tuples are necessarily listed in some order, of course, but you should
attach no significance to that order. Similarly, when tuples are represented on a storage device,
they must be organized in some fashion, and it may be advantageous, from a performance
standpoint, to organize them in a way that depends upon their content.
Ordering of Attributes: A tuple is best viewed as a mapping from its attributes (i.e., the names
we give to the roles played by the values comprising the tuple) to the corresponding values.
Hence, the order in which the attributes are listed in a table is irrelevant. (Note that,
unfortunately, the set theoretic operations in relational algebra (at least how E&N define them)
make implicit use of the order of the attributes. Hence, E&N view attributes as being arranged as
a sequence rather than a set.)
Values of Attributes: For a relation to be in First Normal Form, each of its attribute domains
must consist of atomic (neither composite nor multi-valued) values. Much of the theory
underlying the relational model was based upon this assumption. Chapter 10 addresses the issue
of including non-atomic values in domains. (Note that in the latest edition of C.J. Date's book, he
explicitly argues against this idea, admitting that he has been mistaken in the past.)
Interpretation of a Relation: Each relation can be viewed as a predicate and each tuple in that
relation can be viewed as an assertion for which that predicate is satisfied (i.e., has value true)
for the combination of values in it. In other words, each tuple represents a fact. Example (see
Figure 5.1): The first tuple listed means: There exists a student having name Benjamin Bayer, having
SSN 305-61-2435, having age 19, etc.
Keep in mind that some relations represent facts about entities (e.g., students) whereas others
represent facts about relationships (between entities). (e.g., students and course sections).
The closed world assumption states that the only true facts about the mini world are those
represented by whatever tuples currently populate the database.
Relational Model Notation
R(A1, A2, ..., An) is a relational schema of degree n denoting that there is a relation R
having as its attributes A1, A2, ..., An.
By convention, Q, R, and S denote relation names.
By convention, q, r, and s denote relation states. For example, r(R) denotes one possible
state of relation R. If R is understood from context, this could be written, more simply, as
r.
By convention, t, u, and v denote tuples.
The "dot notation" R.A (e.g., STUDENT.Name) is used to qualify an attribute name, usually
for the purpose of distinguishing it from a same-named attribute in a different relation
(e.g., DEPARTMENT.Name).
Domain Constraints: Each attribute value must be either null (which is really a non-value) or drawn
from the domain of that attribute. Note that some DBMS's allow you to impose the not null constraint
upon an attribute, which is to say that that attribute may not have the (non-)value null.
Key Constraints: A relation is a set of tuples, and each tuple's "identity" is given by the values of
its attributes. Hence, it makes no sense for two tuples in a relation to be identical (because then the
two tuples are actually one and the same tuple). That is, no two tuples may have the same
combination of values in their attributes.
Usually the miniworld dictates that there be (proper) subsets of attributes for which no two tuples
may have the same combination of values. Such a set of attributes is called a superkey of its
relation. From the fact that no two tuples can be identical, it follows that the set of all attributes
of a relation constitutes a superkey of that relation.
A key is a minimal superkey, i.e., a superkey such that, if we were to remove any of its attributes,
the resulting set of attributes fails to be a superkey.
Example: Suppose that we stipulate that a faculty member is uniquely identified by Name and
Address and also by Name and Department, but by no single one of the three attributes
mentioned. Then { Name, Address, Department } is a (non-minimal) superkey and each of
{ Name, Address } and { Name, Department } is a key (i.e., minimal superkey).
Candidate key: any key! (Hence, it is not clear what distinguishes a key from a candidate key.)
Primary key: a key chosen to act as the means by which to identify tuples in a
relation. Typically, one prefers a primary key to be one having as few attributes as
possible.
Entity Integrity Constraint: In a tuple, none of the values of the attributes forming the relation's
primary key may have the (non-)value null. Or is it that at least one such attribute must have a
non-null value? In my opinion, E&N do not make it clear!
Referential Integrity Constraint: (See Figure 5.7) A foreign key of relation R is a set of its
attributes intended to be used (by each tuple in R) for identifying/referring to a tuple in some
relation S. (R is called the referencing relation and S the referenced relation.) For this to make
sense, the set of attributes of R forming the foreign key should "correspond to" some superkey of
S. Indeed, by definition we require this superkey to be the primary key of S.
This constraint says that, for every tuple in R, the tuple in S to which it refers must actually be in
S. Note that a foreign key may refer to a tuple in the same relation and that a foreign key may be
part of a primary key (indeed, for weak entity types, this will always occur). A foreign key may
have value null (necessarily in all its attributes??), in which case it does not refer to any tuple in
the referenced relation.
Ways of dealing with it: reject the attempt to insert! Or give user opportunity to try again
with different attribute values.
Delete:
Update:
Key constraint violation: primary key is changed so as to become same as another tuple's
referential integrity violation:
o foreign key is changed and new one refers to nonexistent tuple
o primary key is changed and now other tuples that had referred to this one
violate the constraint
Transactions: This concept is relevant in the context where multiple users and/or application
programs are accessing and updating the database concurrently. A transaction is a logical unit of
work that may involve several accesses and/or updates to the database (such as what might be
required to reserve several seats on an airplane flight). The point is that, even though several
transactions might be processed concurrently, the end result must be as though the transactions
were carried out sequentially. (Example of simultaneous withdrawals from same checking
account.)
Chapter-2
RELATIONAL ALGEBRA
Relational Operations:
JOIN operations .
selection condition
c
Form of the operation: c
The condition c is an arbitrary Boolean expression on the attributes
of R Resulting relation has the same attributes as R
Resulting relation includes each tuple in r(R) whose attribute values
Examples:
DNO=4(EMPLOYEE)
(EMPLOYEE)
SALARY>30000
(EMPLOYEE)
(DNO=4 AND SALARY>25000) OR
DNO=5
PROJECT operation (denoted by ):
Keeps only certain
attributes (columns) from a relation R specified in an attribute list L
Form of
operation: L(R)
Resulting relation
has only those attributes of R specified in L
The PROJECT operation eliminates duplicate tuples in the
resulting relation so that it remains a mathematical set (no duplicate elements).
Example: SEX,SALARY(EMPLOYEE)
If several male employees have salary 30000, only a single tuple <M, 30000> is kept in
the resulting relation.
FNAME,LNAME,SALARY ( DNO=4(EMPLOYEE) )
DEPT4_EMPS DNO=4(EMPLOYEE)
(DEPT4_EMPS)
FNAME,LNAME,SALARY
Attributes can optionally be renamed in the resulting left-hand-side relation (this may
be required for some operations that will be presented later):
DEPT4_EMPS DNO=4(EMPLOYEE)
(FIRSTNAME,LASTNAME,SALARY) FNAME,LNAME,SALARY(DEPT4_EMPS)
2.2 Relational algebra operation Set theory Operations
UNION: R1 R2,
INTERSECTION: R1 R2,
For , , -, the operand relations R1(A1, A2, ..., An) and R2(B1, B2, ..., Bn) must have the same
number of attributes, and the domains of corresponding attributes must be compatible; that is,
dom(Ai) = dom(Bi) for i=1, 2, ..., n. This condition is called union compatibility. The resulting
relation for , , or - has the same attribute names as the first operand relation R1 (by convention).
CARTESIAN PRODUCT
R(A1, A2, ..., Am, B1, B2, ..., Bn) R1(A1, A2, ..., Am) X R2 (B1, B2, ..., Bn)
A tuple t exists in R for each combination of tuples t1 from R1 and
t2 from R2 such that:
If R1 has n1 tuples and R2 has n2 tuples, then R will have n1*n2 tuples.
CARTESIAN PRODUCT is a meaningless operation on its own. It can combine related tuples
from two relations if followed by the appropriate SELECT operation.
Example: Combine each DEPARTMENT tuple with the EMPLOYEE tuple of the
DEPT_MANAGER MGRSSN=SSN(DEP_EMP)
RESULT (T)
DNAME,FNAME,LNAME
R R
1 *(join attributes of R1),(join attributes of R2) R2
Example: Retrieve each EMPLOYEE's name and the name of the DEPARTMENT he/she
works for:
RESULT (T)
FNAME,LNAME,DNAME
If the join attributes have the same names in both relations, they need not be specified and we can
write R R1 * R2.
Example: Retrieve each EMPLOYEE's name and the name of his/her SUPERVISOR:
(EMPLOYEE)
SUPERVISOR(SUPERSSN,SFN,SLN) SSN,FNAME,LNAM
T EMPLOYEE * SUPERVISOR
RESULT (T)
FNAME,LNAME,SFN,SLN
Note: In the original definition of NATURAL JOIN, the join attributes were required to have
the same names in both relations.
There can be a more than one set of join attributes with a different meaning between the
same two relations. For example:
JOIN ATTRIBUTES
RELATIONSHIP
DEPARTMENT.MGRSSN
the DEPARTMENT
RESULT (T)
FNAME,LNAME,DNAME
EMPLOYEE(2).SSN EMPLOYEE(1)
One can think of this as joining two distinct copies of the relation, although only one
relation actually exists In this case, renaming can be useful.
SUPERVISOR: SUPERVISOR(SSSN,SFN,SLN)
SSN,FNAME,LNAME(EMPLOYEE)
T EMPLOYEE SUPERSSN=SSSNSUPERVISOR
RESULT (T)
FNAME,LNAME,SFN,SLN
All the operations discussed so far can be described as a sequence of only the operations
SELECT, PROJECT, UNION, SET DIFFERENCE, and CARTESIAN PRODUCT.
Hence, the set { , , , - , X } is called a complete set of relational algebra operations. Any query
language equivalent to these operations is called relationally complete.
For database applications, additional operations are needed that were not part of the original
relational algebra. These include:
Functions such as SUM, COUNT, AVERAGE, MIN, MAX are often applied to sets of values
or sets of tuples in database applications
Example 2: For each department, retrieve the department number, the number of employees, and
the average salary (in the department):
(DNO,NUMEMPS,AVGSAL) DNO
COUNT SSN, AVERAGE SALARY (EMPLOYEE)
DNO is called the grouping attribute in the above example
OUTER JOIN
When no matching tuples are found, nulls are placed for the
missing attributes
Q6: Retrieve the names of employees who have no dependents.
ALL_EMPS SSN(EMPLOYEE)
EMPS_WITH_DEPS(SSN) ESSN(DEPENDENT)
EMPLOYEE
SSN Lname Fname
DEPARTMENT
NUMBER NAME
Step 2: For each weak entity type W in the ER schema with owner entity type E, create a
relation R, and include all simple attributes (or simple components of composite attributes) of W
as attributes. In addition, include as foreign key attributes of R the primary key attribute(s) of the
relation(s) that correspond to the owner entity type(s).
DEPENDENT
EMPL-SSN NAME Relationship
Step 3: For each binary 1:1 relationship type R in the ER schema, identify the relations S and T
that correspond to the entity types participating in R. Choose one of the relations, say S, and
include the primary key of T as a foreign key in S. Include all the simple attributes of R as
attributes of S.
DEPARTMENT
MANAGER-SSN StartDate
Step 4: For each regular binary 1:N relationship type R identify the relation (N) relation S.
Include the primary key of T as a foreign key of S. Simple attributes of R map to attributes of
S.
EMPLOYEE
SupervisorSSN
Step 5: For each binary M:N relationship type R, create a relation S. Include the primary keys
of participant relations as foreign keys in S. Their combination will be the primary key for S.
Simple attributes of R become attributes of S.
WORKS-FOR
EmployeeSSN DeptNumber
Step 6: For each multi-valued attribute A, create a new relation R. This relation will include an
attribute corresponding to A, plus the primary key K of the parent relation (entity type or
relationship type) as a foreign key in R. The primary key of R is the combination of A and K.
DEP-LOCATION
Location DEP-NUMBER
Step 7: For each n-ary relationship type R, where n>2, create a new relation S to represent R.
Include the primary keys of the relations participating in R as foreign keys in S. Simple attributes
of R map to attributes of S. The primary key of S is a combination of all the foreign keys that
reference the participants that have cardinality constraint > 1.