DBMS - Chapter-2
DBMS - Chapter-2
Extended E-R Features Design of an E-R Database Schema Reduction of an E-R Schema to Tables
2.1
Entity Sets
A database can be modeled as: a collection of entities, relationship among entities. An entity is an object that exists and is distinguishable from other objects.
properties.
Example: set of all persons, companies, trees, holidays
2.2
2.3
Attributes
An entity is represented by a set of attributes, that is descriptive properties
possessed by all members of an entity set. Example: customer = (customer-id, customer-name, customer-street, customer-city) loan = (loan-number, amount)
Domain the set of permitted values for each attribute Attribute types: Simple and composite attributes. Single-valued and multi-valued attributes E.g. multivalued attribute: phone-numbers Derived attributes Can be computed from other attributes E.g. age, given date of birth
2.4
Composite Attributes
2.5
Relationship Sets
A relationship is an association among several entities
Example: Hayes customer entity from entity sets {(e1, e2, en) | e1 E1, e2 E2, , en En} where (e1, e2, , en) is a relationship
Example: (Hayes, A-102) depositor
2.6
2.7
2.8
E.g. Suppose employees of a bank may have jobs (responsibilities) at multiple branches, with different jobs at different branches. Then there is a ternary relationship set between entity sets are rare. Most Relationships between more than twoentity sets employee, job andrelationships are branch
2.9
Mapping Cardinalities
Express the number of entities to which another entity can be associated
following types:
One to one One to many Many to one Many to many
2.10
Mapping Cardinalities
One to one
One to many
Note: Some elements in A and B may not be mapped to any elements in the other set
Database System Concepts 2.11 Silberschatz, Korth and Sudarshan
Mapping Cardinalities
Many to one
Many to many
Note: Some elements in A and B may not be mapped to any elements in the other set
Database System Concepts 2.12 Silberschatz, Korth and Sudarshan
2.13
E-R Diagrams
Rectangles represent entity sets. Diamonds represent relationship sets. Lines link attributes to entity sets and entity sets to relationship sets. Ellipses represent attributes Double ellipses represent multivalued attributes. Dashed ellipses denote derived attributes. Underline indicates primary key attributes (will study later)
Database System Concepts 2.14 Silberschatz, Korth and Sudarshan
2.15
2.16
Roles
Entity sets of a relationship need not be distinct
The labels manager and worker are called roles; they specify how employee
rectangles.
Role labels are optional, and are used to clarify semantics of the relationship
2.17
Cardinality Constraints
We express cardinality constraints by drawing either a directed line (p),
signifying one, or an undirected line (), signifying many, between the relationship set and the entity set.
E.g.: One-to-one relationship: A customer is associated with at most one loan via the relationship borrower A loan is associated with at most one customer via borrower
2.18
One-ToOne-To-Many Relationship
In the one-to-many relationship a loan is associated with at most one customer
via borrower, a customer is associated with several (including 0) loans via borrower
2.19
Many-ToMany-To-One Relationships
In a many-to-one relationship a loan is associated with several (including 0)
customers via borrower, a customer is associated with at most one loan via borrower
2.20
Many-ToMany-To-Many Relationship
A customer is associated with several (possibly 0) loans via borrower A loan is associated with several (possibly 0) customers via borrower
2.21
relationship set
E.g. participation of customer in borrower is partial
2.22
2.23
Keys
A super key of an entity set is a set of one or more attributes whose
2.24
2.25
2.26
2.27
Binary Vs. Non-Binary Relationships Non Some relationships that appear to be non-binary may be better represented using
binary relationships
E.g. A ternary relationship parents, relating a child to his/her father and mother, is best replaced by two binary relationships, father and mother Using two binary relationships allows partial information (e.g. only mother being know) But there are some relationships that are naturally non-binary E.g. works-on
2.28
Converting Non-Binary Relationships to Binary Form Non In general, any non-binary relationship can be represented using binary relationships by
1. a new entity ei in the entity set E 2. add (ei , ai ) to RA 3. add (ei , bi ) to RB 4. add (ei , ci ) to RC
2.29
Converting Non-Binary Relationships (Cont.) Non Also need to translate constraints Translating all constraints may not be possible There may be instances in the translated schema that cannot correspond to any instance of R Exercise: add constraints to the relationships RA, RB and RC to ensure that a newly created entity corresponds to exactly one entity in each of entity sets A, B and C We can avoid creating an identifying attribute by making E a weak entity set (described shortly) identified by the three relationship sets
2.30
Design Issues
Use of entity sets vs. attributes
Choice mainly depends on the structure of the enterprise being modeled, and on the semantics associated with the attribute in question. Use of entity sets vs. relationship sets Possible guideline is to designate a relationship set to describe an action that occurs between entities Binary versus n-ary relationship sets Although it is possible to replace any nonbinary (n-ary, for n > 2) relationship set by a number of distinct binary relationship sets, a n-ary relationship set shows more clearly that several entities participate in a single relationship. Placement of relationship attributes
2.31
How about doing an ER design interactively on the board? Suggest an application to be modeled.
set.
The existence of a weak entity set depends on the existence of a identifying
entity set
it must relate to the identifying entity set via a total, one-to-many relationship set from the identifying to the weak entity set Identifying relationship depicted using a double diamond The discriminator (or partial key) of a weak entity set is the set of attributes that
entity set on which the weak entity set is existence dependent, plus the weak entity sets discriminator.
2.33
2.34
but then the relationship between payment and loan would be duplicated by an implicit relationship defined by the attribute loan-number common to payment and loan
2.35
as a weak entity
The discriminator of course-offering would be semester (including year) and
an attribute. Then the relationship with course would be implicit in the course-number attribute
2.36
Specialization
Top-down design process; we designate subgroupings within an entity set that
2.37
Specialization Example
2.38
Generalization
A bottom-up design process combine a number of entity sets that share the
2.39
2.40
set.
condition-defined E.g. all customers over 65 years are members of senior-citizen entity set; senior-citizen ISA person. user-defined Constraint on whether or not entities may belong to more than one lower-
2.41
entity set must belong to at least one of the lower-level entity sets within a generalization.
total : an entity must belong to one of the lower-level entity sets partial: an entity need not belong to one of the lower-level entity sets
2.42
Aggregation
Consider the ternary relationship works-on, which we saw earlier Suppose we want to record managers for tasks performed by an
employee at a branch
2.43
Aggregation (Cont.)
Relationship sets works-on and manages represent overlapping information Every manages relationship corresponds to a works-on relationship However, some works-on relationships may not correspond to any manages relationships So we cant discard the works-on relationship Eliminate this redundancy via aggregation Treat relationship as an abstract entity Allows relationships between relationships Abstraction of relationship into new entity Without introducing redundancy, the following diagram represents: An employee works on a particular job at a particular branch An employee, branch, job combination may have an associated manager
2.44
2.45
relationship set.
The use of a ternary relationship versus a pair of binary relationships. The use of a strong or weak entity set. The use of specialization/generalization contributes to modularity in the
design.
The use of aggregation can treat the aggregate entity set as a single unit
2.46
2.47
2.49
2.50
2.51
UML
UML: Unified Modeling Language UML has many components to graphically model different aspects of an entire
software system
UML Class Diagrams correspond to E-R Diagram, but several differences.
2.52
2.53
the entity sets. The relationship set name is written adjacent to the line.
The role played by an entity set in a relationship set may also be specified by
writing the role name on the line, adjacent to the entity set.
The relationship set name may alternatively be written in a box, along with
attributes of the relationship set, and the box is connected, using a dotted line, to the line depicting the relationship set.
Non-binary relationships drawn using diamonds, just as in ER diagrams
2.54
overlapping
disjoint
*Note reversal of position in cardinality constraint depiction *Generalization can use merged or separate arrows independent of disjoint/overlapping
Database System Concepts 2.55 Silberschatz, Korth and Sudarshan
can participate in at most one relationship, whereas each E1 entity can participate in many relationships; in other words, the relationship is many to one from E2 to E1.
Single values, such as 1 or * may be written on edges; The single value 1 on an
2.56
Reduction of an E-R Schema to Tables E Primary keys allow entity sets and relationship sets to be expressed
a collection of tables.
For each entity set and relationship set there is a unique table which is
2.57
2.58
component attribute
E.g. given entity set customer with composite attribute name with component attributes first-name and last-name the table corresponding to the entity set has two attributes name.first-name and name.last-name A multivalued attribute M of an entity E is represented by a separate table EM Table EM has attributes corresponding to the primary key of E and an attribute corresponding to multivalued attribute M E.g. Multivalued attribute dependent-names of employee is represented by a table employee-dependent-names( employee-id, dname) Each value of the multivalued attribute maps to a separate row of the table EM E.g., an employee entity with primary key John and dependents Johnson and Johndotir maps to two rows: (John, Johnson) and (John, Johndotir)
2.59
2.60
the primary keys of the two participating entity sets, and any descriptive attributes of the relationship set.
E.g.: table for relationship set borrower
2.61
Redundancy of Tables
Many-to-one and one-to-many relationship sets that are total on the many-
side can be represented by adding an extra attribute to the many side, containing the primary key of the one side E.g.: Instead of creating a table for relationship account-branch, add an attribute branch to the entity set account
2.62
many side
That is, extra attribute can be added to either of the tables corresponding to the two entity sets If participation is partial on the many side, replacing a table by an extra attribute
in the relation corresponding to the many side could result in null values The table corresponding to a relationship set linking a weak entity set to its identifying strong entity set is redundant.
E.g. The payment table already contains the information that would appear in the loan-payment table (i.e., the columns loan-number and payment-number).
2.63
Drawback: getting information about, e.g., employee requires accessing two tables
2.64
2.65
2.66
2.67
End of Chapter 2
2.69
2.70
2.71
2.72
Existence Dependencies
If the existence of entity x depends on the existence of entity y, then x
loan
loan-payment
payment
If a loan entity is deleted, then all its associated payment entities must be deleted also.
2.73