BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS...

55
BIS 512 - DBMS Entity - Relationship Model Ahmet Onur Durahim

Transcript of BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS...

Page 1: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

BIS 512 - DBMSEntity-Relationship Model

Ahmet Onur Durahim

Page 2: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Learning Objectives

• Database Design

• Main concepts in the ER model?

• ER Diagrams

Page 3: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Database Design and ER Diagrams• Requirements Analysis: find out what the users want from

the database– What data is to be stored in the DB– What applications must be built on top of it– What operations are most frequent and subject to

performance requirements• Conceptual Database Design: create a simple description of the data

that closely matches how users and developers think of the data– A high-level (semantic) description of data to be stored in the DB

along with the constraints known to hold over this data– Carried out using the ER Model

• Logical Database Design: choose DBMS to implement conceptual database design– Convert conceptual DB design (ER schema) into a DB schema in

the data model of the chosen DBMS (relational DB schema)

Page 4: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

DB Design• Schema Refinement

– Analyze the collection of relations in relational DB schema to identify potential problems and refine it (- Normalization of the relations)

• Physical DB Design– Consider expected workloads to refine for meeting the desired

performance criteria• Building indexes on tables• Clustering some tables

– Redesign of parts of the DB schema

• Application and Security Design– Identify entities (users, departments) and relevant roles of each

entity– Enforce access rules: For each role, identify the parts of the DB

that must be accessible and must not be accessible

Page 5: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Entity-Relationship Model• Before developing your database application,

you need to– Collect the requirements

– Build a conceptual database design

• ER Model: used to describe the data involved in an enterprise in terms of objects and relationships– Widely accepted standard for initial (conceptual)

database design

Page 6: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Entity-Relationship Model• Conceptual DB design:

– What information about these entities and relationships should we store in the database?

– What are the integrity constraints or business rulesthat hold?

• A database “schema” in the ER Model can be represented pictorially

– ER diagrams

• Can map an ER diagram into a relational schema

Page 7: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Entity-Relationship Diagram

lot

name

agepname

DependentsEmployees

ssn

Policy

cost

Page 8: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Key Concepts of ER Model

• Entities and Relationships

• Entities– An object that is capable of independent existence

and can be uniquely identified • can be distinguished from other objects

• An entity is described using a set of attributes

Employee StudentItem

ssn sid type

Page 9: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Key Concepts of ER Model• Entity set

– A collection of similar entities

• share the same set of properties/attributes– except in ISA hierarchies

• Reflects the level of detail at to represent information about entities

Students

Onur Alp

Zubeyde Esra

Arzu Ahmet

Page 10: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Key Concepts of ER Model• Entity set may overlap

– Any example?

Students

Onur Alp

Zubeyde Esra

Arzu Ahmet

Employees

Mert

Emrecan

Mehmet

Page 11: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Key Concepts of ER Model• Each entity sets has attributes• Each attribute has a domain

– Domain: set of permitted values• name attribute – (set of 20-character string)• age attribute – (set of integers between 0-150)

• Each entity set has a key– minimal set of attributes whose values uniquely identify

an entity in the set– denoted by underlining the attribute name in the ER-

diagram

addressssn

name

Employee

Page 12: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Key Concepts of ER Model

• Relationships– Association (relation) among two or more entities

– Ahmet is enrolled in MIS335

• Relationship sets– A collection of similar relationships

– Share the same properties

EnrolledWorks_In

Page 13: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Key Concepts of ER Model

• Relationships also has attributes– Descriptive attributes: used to record the

information about the relationship

– Ahmet Works_In University since 2014

Works_In

address

since

ssn

name

Employee

Page 14: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Model

Rectangles : Entity sets

Diamonds : Relationship Sets

Ellipses/Oval : Attributes

EnrolledStudent Course

name

sid

cid

cname

semester

Page 15: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Model

• Degree of a relationship set is the number of entity sets that participate in a relationship

• Binary relationship sets involve two entity sets

EnrolledStudent

Course

name

sid

cid

cname

semester

Page 16: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Model

• Ternary relationship sets involve three entity sets

Works_InEmployee Departments

namessndid

dnamesince

Locations

budget

capacityaddress

Page 17: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

An Instance of the WorksInRelationship Set

Page 18: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Model• The set of entities that participate in a relationship

set may belong to the same entity set

• Each entity plays a different role in such a relationship

Reports_To

Employees namessn

supervisor subordinate

Employees

Reports_To => Unary relationship

Page 19: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Model• The set of entities that participate in a relationship

set may belong to the same entity set

• Each entity plays a different role in such a relationship

Helps

Student namesid

tutor tutee

Students

Page 20: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Cardinality Mappings• One-to-One (1-1)

– One occurrence of an entity relates to only one occurrence in another entity

– rarely exists in practice• consider combining them into one entity

– Example: an employee is allocated a company car, which can only be driven by that employee

• One-to-Many (1-M) / Many-to-One (M-1)– One occurrence in an entity relates to many occurrences in another

entity– Example: an employee works in one department but a department has

many employees.

Page 21: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Cardinality Mappings• Many-to-Many (M-N)

– Many occurrences in an entity relate to many occurrences in another entity

– Rarely exist• They occur because an entity has been missed• The normalisation process would prevent any such relationships

– Example: an employee may work on several projects at the same time and a project has a team of many employees.

– In the normalisation process this many-to-many is resolved by the entity Project Team.

Page 22: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Cardinality Mappings

Many-to-Many1-to-1 1-to-Many Many-to-1

Page 23: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Model – Key Constraints

An employee can Work In multiple departments and

a department can have multiple employees.

What is the type of this relationship?

Works_In Departments

namessn

since

Employees

dnamedid

since

Many-to-Many

Page 24: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Model – Key Constraints

An employee can Manage multiple departments, but a department

can be managed by only one employee (Manager)

What is the type of this relationship?

Manages Departments

namessn

since

Employees

dnamedid

since

1-to-Many

This is called a key constraint (the restriction that each department has at most one manager)

denoted by an arrow

Page 25: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

An Instance of the Manages Relationship Set

Department with did = ‘60’

violates the key constraint of

the Manages relationship

Instance of Manages relationship

that satisfies the key constraint

of the Manages relationship

Page 26: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Participation Constraints• If every department is required to have a manager, this

requirement is a participation constraint– The participation of the entity set Departments in the relationship

set Manages is total– The participation of the entity set Employees in the relationship

set Manages is partial• Since not every employee gets to manage a department

• Total participation constraint of an Entity set in a relationship set is indicated by connecting them by thick line

Manages Departments

namessn

since

Employees

dnamedid

since

Page 27: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Works_In

since

Participation Constraints• If each employee works in at least one department,

and if each department has at least one employee– Total or Partial Participation of Employees & Departments

entities

Manages Departments

namessn

since

Employees

dnamedid

since

Page 28: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Weak Entities• Weak Entity: Entity set that does not include a key• A weak entity can be identified uniquely only by

considering the primary key of another entity (called identifying owner)– Set of attributes of a weak entity set that uniquely identify a

weak entity for a given owner entity => partial key

• A weak entity set is denoted by a rectangle with thick lines

Policy Dependents

namessn

cost

Employees

pname

age

Dependents

Page 29: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Weak Entities• A weak entity can be identified uniquely only by

considering the primary key of another entity (called identifying owner)

• A weak entity set is denoted by a rectangle with thick lines• The relationship between a weak entity and the owner

entity is denoted by a diamond with thick lines

Policy Dependents

namessn

cost

Employees

pname

age

DependentsPolicy

Page 30: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Weak Entities

• A weak entity can be identified uniquely only by considering the primary key of another entity (called identifying owner)

• What can you say about the constraints on the identifying relationship? (i.e., participation and key constraints)

Policy Dependents

namessn

cost

Employees

pname

age

DependentsPolicy

Page 31: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Weak Entities• What can you say about the constraints on the

identifying relationship? (i.e., participation and key constraints)– Owner entity set and weak entity set must participate in a

one-to-many relationship set (one owner, many weak entities)

– Weak entity set must have total participation in this identifying relationship set

Policy Dependents

namessn

cost

Employees

pname

age

DependentsPolicy

Page 32: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Class/ISA (“is a”) Hierarchies

• Classify entities into subclasses• Every entity in a subclass also belongs

to superclass (Employees)• The attributes for the entity set

Employees are inherited by the entity set Hourly_Emps

• Hourly_Emps ISA Employees

Contract_Emps

name

ssn

Employees

contractid

Hourly_Emps

hours_workedhourly_wages

ISA

• Reasons for using ISA:• To add descriptive attributes

specific to a subclass• i.e. not appropriate for all

entities in the superclass• To identify entities that

participate in a relationship• i.e. not all superclass

entities participate

Page 33: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Class/ISA (“is a”) Hierarchies

• Specialization: process of identifying subsets of an entity set (Employees) that share some distinguishing characteristic– Employees is specialized into subclasses

• Generalization: process of identifying some common characteristics of a collection of entity sets and creating a new entity set that contains entities possessing these common characteristics– Hourly_Emps and Contract_Emps are

generalized by EmployeesContract_Emps

name

ssn

Employees

contractid

Hourly_Emps

hours_workedhourly_wages

ISA

Page 34: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Class/ISA (“is a”) Hierarchies

• Overlap Constraints: determine whether two subclasses are allowed to contain the same entity– Can Ahmet belong to both Contract_Emps

entity and Hourly_Emps?

• Covering Constraints: determine whether the entities in the subclasses collectively include all entities in the superclass– Does every Employees entity have to belong to

one of Hourly_Emps and Contract_Emps?

Contract_Emps

name

ssn

Employees

contractid

Hourly_Emps

hours_workedhourly_wages

ISA

Page 35: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Aggregation• Used to indicate that a relationship set

(denoted by a dashed box) participates in another relationship set– Allows us to treat a relationship set as an

entity set for purposes of participation in other relationships

Departments

name

ssn

Employees

Projects

pbudget

started_on

Monitors

Sponsors

since

pid

until

budget

did dname

• Aggregation vs. Ternary relationship:– Monitors is a distinct relationship, with a

descriptive attribute– Also, can say that each sponsorship is

monitored by at most one employee

A department that sponsors a project might assign employees to Monitor the Sponsorship– Monitors should be a relationship

that associates a Sponsors relationship with an Employees entity

Page 36: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Conceptual Design Using the ER Model

• Design choices:– Should a concept be modeled as an entity or an

attribute?– Should a concept be modeled as an entity or a

relationship?– Identifying relationships: Binary or ternary?

Aggregation?

• Constraints in the ER Model:– A lot of data semantics can (and should) be captured– But some constraints cannot be captured in ER

diagrams

Page 37: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Entity vs. Attribute• Should address be an attribute of Employees or an

entity (connected to Employees by a relationship)?• Depends upon the use we want to make of address

information, and the semantics of the data:– If only one address is to be recorded per employee

• Use attribute ‘address’

– If we have several addresses per employee • address must be an entity (since attributes cannot be set-valued)

– If we want to capture the structure (break down address into country, city, street, etc.) of an address • e.g., we want to retrieve employees in a given city • address must be modeled as an entity (since attribute values are

atomic)

Page 38: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Entity vs. Attribute• Works_In does not allow an

employee to work in a department for two or more periods– This possibility is ruled out by

the ER diagram’s semantic, because relationship is uniquely identified by the participating entities (without reference to its descriptive attributes)

• Similar to the problem of wanting to record several addresses for an employee– We want to record several

values of the descriptive attributes for each instance of this relationship

– Accomplished by introducing new entity set, Duration

DepartmentsEmployees

name

Works_In

to

ssn

budget

did dname

from

DepartmentsEmployees

name

Works_In

to

ssn

budget

did dname

from Duration

Page 39: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Entity vs. Relationship• ER diagram is OK if a manager

gets a separate discretionary budget for each department

• What if a manager gets a discretionary budget that covers all managed departments?– Redundancy: dbudget stored

for each dept managed by manager

– Misleading: Suggests dbudgetassociated with department-mgr combination

DepartmentsEmployees

name

Manages

dbudget

ssn

budget

did dname

since

Departments

Employees

name

Manages

dbudget

ssn

budget

did dname

Managers

ISA

since

Page 40: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Entity vs. Relationship• ER diagram is OK if a manager

gets a separate discretionary budget for each department

• What if a manager gets a discretionary budget that covers all managed departments?– Redundancy: dbudget stored

for each dept managed by manager

– Misleading: Suggests dbudgetassociated with department-mgr combination

DepartmentsEmployees

name

Manages

dbudget

ssn

budget

did dname

since

Departments

Employees

name

Manages

dbudget

ssn

budget

did dname

Managers

ISA

since

Redundancies are eliminated by Normalization technique

Page 41: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Binary vs. Ternary Relationship

• Models the situation where;– An employee can own several policies – Each policy can be owned by several

employees – Each dependent can be covered by

several policies

Covers

Policies

Employees Dependents

name

ssn

policyid cost

pname age

Page 42: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Binary vs. Ternary Relationship

Covers

Policies

Employees Dependents

name

ssn

policyid cost

pname age

Purchaser

Policies

EmployeesDependents

name

ssn

policyid cost

pname age

Beneficiary

Better design

Bad design

• If we have additional requirements;– A policy cannot be owned jointly by

two or more employees– Every policy must be owned by

some employee– Dependents is a weak entity, and

uniquely identified by taking pnamein conjunction with policyid of a policy entity

• ER diagram is inaccurate

• What are the additional constraints in the 2nd diagram?

Page 43: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Binary vs. Ternary Relationship (Contd.)

• An example in the other direction:

• A ternary relation Contracts relates entity sets Parts, Departments and Suppliers, and has descriptive attribute qty.

• No combination of binary relationships is an adequate substitute:– S “can-supply” P, D “needs” P, and D “deals-with”

S does not imply that D has agreed to buy P from S

– How do we record qty?

Page 44: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Summary of Conceptual Design• Conceptual design follows requirements analysis

– Yields a high-level description of data to be stored

• ER model popular for conceptual design– Constructs are expressive, close to the way people

think about their applications

• Basic constructs– entities, relationships, and attributes (of entities and

relationships)

• Some additional constructs– weak entities, ISA hierarchies, and aggregation

• Note: There are many variations on ER model

Page 45: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Summary of Conceptual Design• Several kinds of integrity constraints can be

expressed in the ER model: – key constraints– participation constraints– overlap/covering constraints for ISA hierarchies

• Some foreign key constraints are also implicit in the definition of a relationship set– Some constraints (notably, functional dependencies)

cannot be expressed in the ER model

• Constraints play an important role in determining the best database design for an enterprise

Page 46: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Summary of Conceptual Design• ER design is subjective

– There are often many ways (alternatives) to model a given scenario

• Common choices include:– Entity vs. attribute, Entity vs. relationship– Binary or n-ary relationship– Whether or not to use ISA hierarchies / aggregation

• To ensuring good database design: – Resulting relational schema should be analyzed and

refined further– FD information and normalization techniques are

especially useful

Page 47: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Modeling Question - 0

• Should explain the following terms:

– entity, relationship, entity set, relationship set,

– attribute, domain,

– one-to-many relationship, many-to-many relationship,

– participation constraint, overlap constraint, covering constraint,

– weak entity set, aggregation, role indicator.

Page 48: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

• Attribute - a property or description of an entity. – A toy department employee entity could have attributes describing

the employee’s name, salary, and years of service.

• Domain - a set of possible values for an attribute.• Entity - an object in the real world that is distinguishable from other

objects such as the green dragon toy.• Entity set - a collection of similar entities such as all of the toys in

the toy department.• Relationship - an association among two or more entities.• Relationship set - a collection of similar relationships• One-to-many relationship - a key constraint that indicates that one

entity can be associated with many of another entity. – An example of a one-to-many relationship is when an employee can

work for only one department, and a department can have many employees.

• Many-to-many relationship - a key constraint that indicates that many of one entity can be associated with many of another entity. – An example of a many-to-many relationship is employees and their

hobbies: a person can have many different hobbies, and many people can have the same hobby.

Page 49: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

• Participation constraint - a participation constraint determines whether relationships must involve certain entities– An example is if every department entity has a manager entity– Participation constraints can either be total or partial

• A total participation constraint says that every department has a manager• A partial participation constraint says that every employee does not have to be a manager

• Overlap constraint - within an ISA hierarchy, an overlap constraint determines whether or not two subclasses can contain the same entity

• Covering constraint - within an ISA hierarchy, a covering constraint determines where the entities in the subclasses collectively include all entities in the superclass– For example, with an Employees entity set with subclasses HourlyEmployee and

SalaryEmployee, does every Employee entity necessarily have to be within either HourlyEmployee or SalaryEmployee?

• Weak entity set - an entity that cannot be identified uniquely without considering some primary key attributes of another identifying owner entity– An example is including Dependent information for employees for insurance purposes

• Aggregation - a feature of the entity relationship model that allows a relationship set to participate in another relationship set.

– This is indicated on an ER diagram by drawing a dashed box around the aggregation

• Role indicator - If an entity set plays more than one role, role indicators describe the different purpose in the relationship– An example is a single Employee entity set with a relation Reports-To that relates

supervisors and subordinates

Page 50: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Modeling Example - 1

• A university database contains information about professors (identified by social security number, or SSN) and courses (identified by courseid)

– Professors teach courses; each of the following situations concerns the Teaches relationship set.

– For each situation, draw an ER diagram that describes it (assuming no further constraints hold)

Page 51: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Modeling Example - 1

– Professors can teach the same course in several semesters, and each offering must be recorded

– Professors can teach the same course in several semesters, and only the most recent such offering needs to be recorded.

• (Assume this condition applies in all subsequent questions.)

– Every professor must teach some course

Page 52: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

ER Modeling Example - 1– Every professor teaches exactly one course (no

more, no less)

– Every professor teaches exactly one course (no more, no less), and every course must be taught by some professor

– Now suppose that certain courses can be taught by a team of professors jointly, but it is possible that no one professor in a team can teach the course. Model this situation, introducing additional entity sets and relationship sets if necessary

Page 53: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Different ER Modeling Notations

Page 54: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Chen vs. Crow’s Foot Notation

Page 55: BIS 512 - DBMSmisprivate.boun.edu.tr/durahim/lectures/BIS512-W2-ER_Model.pdf · BIS 512 - DBMS Entity-Relationship Model Ahmet Onur Durahim. Learning Objectives ... –Carried out

Crow’s Foot Notation