Data%20Modeling%20Using%20the%20Entity-Relationship%20%20%20(ER)%20Data%20Model%20(Based%20on%20Chapter%203%20in%20Fundamentals%20of%20Database%20Systems%20by%20Elmasri%20and%20Navathe,%20Ed.%203) - PowerPoint PPT Presentation

About This Presentation
Title:

Data%20Modeling%20Using%20the%20Entity-Relationship%20%20%20(ER)%20Data%20Model%20(Based%20on%20Chapter%203%20in%20Fundamentals%20of%20Database%20Systems%20by%20Elmasri%20and%20Navathe,%20Ed.%203)

Description:

Data Modeling Using the Entity-Relationship (ER) Data Model (Based on Chapter 3 in Fundamentals of Database Systems by Elmasri and Navathe, Ed. – PowerPoint PPT presentation

Number of Views:220
Avg rating:3.0/5.0

less

Transcript and Presenter's Notes

Title: Data%20Modeling%20Using%20the%20Entity-Relationship%20%20%20(ER)%20Data%20Model%20(Based%20on%20Chapter%203%20in%20Fundamentals%20of%20Database%20Systems%20by%20Elmasri%20and%20Navathe,%20Ed.%203)


1
Data Modeling Using the Entity-Relationship
(ER) Data Model(Based on Chapter 3 in
Fundamentals of Database Systems by Elmasri and
Navathe, Ed. 3)
2
Topics
  • 1 database design process
  • 2 example database application (COMPANY)
  • 3 ER model concepts
  • 3.1 entities and attributes
  • 3.2 entity types, value sets, and key
    attributes
  • 3.3 relationships and relationship types
  • 3.4 structural constraints and roles
  • 3.4 weak entity types
  • 4 ER diagrams notation
  • 5 relationships of higher degree
  • 6 extended entity relationship (EER) model

3
2 Example COMPANY Database

4
Requirements for the COMPANY Database
  • The company is organized into DEPARTMENTs. Each
    department has a name, number, and an employee
    who manages the department. We keep track of the
    start date of the department manager. A
    department may have several locations.

5
Requirements for the COMPANY Database
  • Each department controls a number of PROJECTs.
    Each project has a name, number, and is located
    at a single location.
  • We store each EMPLOYEE's social security number,
    address, salary, sex, and birth date. Each
    employee works for one department but may work
    on several projects. We keep track of the number
    of hours per week that an employee currently
    works on each project. We also keep track of the
    direct supervisor of each employee.

6
Requirements for the COMPANY Database
  • Each employee may have a number of DEPENDENTs.
    For each dependent, we keep their name, sex,
    birth date, and relationship to the employee.

7
(No Transcript)
8
3 ER Model Concepts
9
3.1 Entities and Attributes
  • Entities are specific objects or things in the
    mini-world that are represented in the database
    for example the EMPLOYEE John Smith, the Research
    DEPARTMENT, the ProductX PROJECT.
  • Attributes are properties used to describe an
    entity for example an EMPLOYEE entity may have a
    Name, SSN, Address, Sex, BirthDate.

10
  • A specific entity will have a value for each of
    its attributes for example a specific employee
    entity may have Name'John Smith',
    SSN'123456789', Address'731 Fondren, Houston,
    TX', Sex'M', BirthDate'09-JAN-55'.

11
Types of Attributes
  • Simple Each entity has a single atomic value
    for the attribute for example SSN or Sex.
  • Composite The attribute may be composed of
    several components for example Address(Apt,
    House, Street, City, State, ZipCode, Country) or
    Name(FirstName, MiddleName, LastName).
    Composition may form a hierarchy where some
    components are themselves composite.

12
Types of Attributes
  • Multi-valued An entity may have multiple values
    for that attribute for example Color of a CAR or
    PreviousDegrees of a STUDENT. Denoted as Color
    or PreviousDegrees.
  • In general, composite and multi-valued attributes
    may be nested arbitrarily to any number of levels
    although this is rare. For example,
    PreviousDegrees of a STUDENT is a composite
    multi-valued attribute denoted by
    PreviousDegrees(College, Year, Degree, Field).

13
3.2 Entity Types and Key Attributes
14
  • Entities with the same basic attributes are
    grouped or typed into an entity type. For
    example, the EMPLOYEE entity type or the PROJECT
    entity type.
  • An attribute of an entity type for which each
    entity must have a unique value is called a key
    attribute of the entity type. For example SSN of
    EMPLOYEE.
  • A key attribute may be composite. For example,
    VehicleRegistrationNumber is a key of the CAR
    entity type with components (Number, State).

15
  • An entity type may have more than one key. For
    example, the CAR entity type may have two keys
    VehicleIdentificationNumber and
    VehicleRegistrationNumber(Number, State).

16
(No Transcript)
17
3.3 Relationships and Relationship Types
18
  • A relationship relates two or more distinct
    entities with a specific meaning for example,
    EMPLOYEE John Smith works on the ProductX
    PROJECT or EMPLOYEE Franklin Wong manages the
    Research DEPARTMENT.
  • Relationships of the same type are grouped or
    typed into a relationship type. For example, the
    WORKS_ON relationship type in which EMPLOYEEs and
    PROJECTs participate, or the MANAGES relationship
    type in which EMPLOYEEs and DEPARTMENTs
    participate.

19
  • The degree of a relationship type is the number
    of participating entity types. Both MANAGES and
    WORKS_ON are binary relationships.
  • More than one relationship type can exist
    with the same participating entity types for
    example, MANAGES and WORKS_FOR are distinct
    relationships between EMPLOYEE and DEPARTMENT
    participate.

20
(No Transcript)
21
(No Transcript)
22
(No Transcript)
23
3.4 Structural Constraints and Roles
24
  • A relationship can relate two entities of the
    same entity type for example, a SUPERVISION
    relationship type relates one EMPLOYEE (in the
    role of supervisee ) to another EMPLOYEE (in the
    role of supervisor ). This is called a recursive
    relationship type.
  • A relationship type can have attributes for
    example, HoursPerWeek of WORKS_ON its value for
    each relationship instance describes the number
    of hours per week that an EMPLOYEE works on a
    PROJECT.

25
Structural constraints on relationships
  • Cardinality ratio (of a binary relationship)
    11, 1N, N1, or MN.
  • Participation constraint (on each participating
    entity type) total (called existence dependency
    ) or partial.

26
(No Transcript)
27
Alternative (min, max) notation for relationship
structural constraints
  • Specified on each participation of an entity type
    E in a relationship type R.
  • Specifies that each entity e in E participates in
    at least min and at most max relationship
    instances in R.
  • Default(no constraint) min0, maxn.
  • Must have minltmax, mingt0, maxgt1.
  • Derived from the mini-world constraints.

28
Examples
  • (a) A department has exactly one manager and an
    employee can manage at most one department.
  • - Specify (1,1) for participation of
    DEPARTMENT in MANAGES
  • - Specify (0,1) for participation of EMPLOYEE
    in MANAGES

29
  • (b) An employee can work for exactly one
    department but a department can have any number
    of employees.
  • - Specify (1,1) for participation of
    EMPLOYEE in WORKS_FOR
  • - Specify (0,n) for participation of
    DEPARTMENT in WORKS_FOR

30
  • 3.4 Weak Entity Types

31
  • An entity type that does not have a key attribute
  • A weak entity type must participate in an
    identifying relationship type with an owner or
    identifying entity type
  • Entities are identified by the combination of
  • - A partial key of the weak entity type
  • - The particular entity they are related
    to in the identifying entity type

32
Example
  • Suppose that a DEPENDENT entity is identified by
    the dependent's first name and birthdate, and
    the specific EMPLOYEE that the dependent is
    related to. DEPENDENT is a weak entity type with
    EMPLOYEE as its identifying entity type via the
    identifying relationship type DEPENDENT_OF.

33
(No Transcript)
34
(No Transcript)
35
5 Relationships of Higher Degree
36
  • Relationship types of degree 2 are called binary
  • Relationship types of degree 3 are called ternary
    and of degree n are called n-ary
  • In general, an n-ary relationship is not
    equivalent to n binary relationships

37
(No Transcript)
38
(No Transcript)
39
(No Transcript)
40
6 Extended Entity-Relationship (EER)Model
41
  • Incorporates Set-subset Relationships
  • Incorporates Generalization Hierarchies
  • -  Constraints
  • -      - Coverage Constraints partial vs. total
  • - Disjointedness Constraint disjoint vs.
    overlapping

42
LIMITATIONS OF THE ER MODEL
  • No relationship may be defined between an entity
    type and a relationship type
  • No relationship may be defined between an entity
    type and a collection of entity types from which
    any one type may participate (e.g. Entity type1
    POLICY-HOLDER may be an individual, multiple
    individuals , one organization, or many
    organizations
  • Entity type2 POLICY )
  • No constraints (exclusion, co-existence etc. )
    among relationship types. (NIAM model, UML class
    diagrams allow them).

43
(No Transcript)
44
(No Transcript)
45
(No Transcript)
46
(No Transcript)
47
7 Mapping ER and EER Schemas into the
Relational Model Steps Of The
Algorithm (Chapter 9 pages 290 to 296,
Elmasri/Navathe ed. 3)
48
  • STEP 1 Map Entity Types
  • STEP 2 Map Weak Entity Types draw identifier
    from parent entity type into weak entity type
  • Map Relationship Types (STEPS 3 5)
  • 11 - options for setting up one, two or
    three relations
  • 1N the many side provides a key to the one
    side, no new relation
  • MN need to set up a separate relation for
    the relationship

49
  • STEP 6 Map multivalued attributes set up a new
    relation for each multi-valued attribute
  • STEP 7 Map higher order relationships (ternary,
    4-way, etc.) each higher order relationship
    become separate relations.
  • STEP 8 Mapping of generalization hierarchies and
    set-subset relationships possiblity of
    collapsing into one relation vs. as many
    relations as the number of distinct classes.

50
(No Transcript)
51
(No Transcript)
Write a Comment
User Comments (0)
About PowerShow.com