67
Entity Relationship (ER) Modeling

Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

Embed Size (px)

Citation preview

Page 1: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

Entity Relationship (ER) Modeling

Page 2: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

2

In this chapter, you will learn:

• The main characteristics of entity relationship components

• How relationships between entities are defined and refined and how those relationships are incorporated into the database design process

• How ERD components affect database design and implementation

• That real-world database design often requires the reconciliation of conflicting goals

Page 3: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

3

The Entity Relationship (ER) Model

• ER model forms the basis of an ER diagram

• ERD represents conceptual database as viewed by end user

• ERDs depict database’s main components:– Entities– Attributes– Relationships

Page 4: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

4

Entities

• Refers to entity set and not to single entity occurrence

• Corresponds to table and not to row in relational environment

• In both Chen and Crow’s Foot models, entity is represented by rectangle containing entity’s name

• Entity name, a noun, is usually written in capital letters

Page 5: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

5

Attributes

• Characteristics of entities

• In Chen model, attributes are represented by ovals and are connected to entity rectangle with a line

• Each oval contains the name of attribute it represents

• In Crow’s Foot model, attributes are written in attribute box below entity rectangle

Page 6: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

6

Attributes (continued)

Page 7: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

7

Domains

• Attributes have domain– Domain is attribute’s set of possible values

• Attributes may share a domain

Page 8: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

8

Identifiers (Primary Keys)

• Underlined in the ERD

• Key attributes are also underlined in frequently used table structure shorthand

Page 9: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

9

Composite Primary Keys

• Primary keys ideally composed of only single attribute

• Possible to use a composite key– Primary key composed of more than one

attribute

Page 10: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

10

Composite and Simple Attributes

• Composite attribute can be subdivided

• Simple attribute cannot be subdivided

• Single-value attribute can have only a single value

• Multivalued attributes can have many values

Page 11: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

11

Multivalued Attributes (continued)

Page 12: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

12

Resolving Multivalued Attribute Problems

• Although conceptual model can handle M:N relationships and multivalued attributes, you should not implement them in relational DBMS– Within original entity, create several new

attributes, one for each of the original multivalued attribute’s components

• Can lead to major structural problems in table

– Create new entity composed of original multivalued attribute’s components

Page 13: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

13

Resolving Multivalued Attribute Problems (continued)

Page 14: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

14

Resolving Multivalued Attribute Problems (continued)

Page 15: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

15

Resolving Multivalued Attribute Problems (continued)

Page 16: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

16

Derived Attributes

• Attribute whose value may be calculated (derived) from other attributes

• Need not be physically stored within database

• Can be derived by using an algorithm

Page 17: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

17

Derived Attributes (continued)

Page 18: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

18

Derived Attributes (continued)

Page 19: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

19

Relationships

• Association between entities• Participants are entities that participate in a

relationship• Relationships between entities always operate in

both directions• Relationship can be classified as 1:M• Relationship classification is difficult to establish

if know only one side of the relationship

Page 20: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

20

Connectivity and Cardinality

• Connectivity – Used to describe the relationship

classification

• Cardinality – Expresses minimum and maximum number of

entity occurrences associated with one occurrence of related entity

• Established by very concise statements known as business rules

Page 21: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

21

Connectivity and Cardinality (continued)

Page 22: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

22

Existence Dependence

• Existence dependence– Exist in database only when it is associated

with another related entity occurrence

• Existence independence– Entity can exist apart from one or more

related entities– Sometimes refers to such an entity as strong

or regular entity

Page 23: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

23

Relationship Strength

• Weak (non-identifying) relationships– Exists if PK of related entity does not contain

PK component of parent entity

• Strong (Identifying) Relationships– Exists when PK of related entity contains PK

component of parent entity

Page 24: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

24

Weak (Non-Identifying) Relationships

Page 25: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

25

Weak (Non-Identifying) Relationships (continued)

Page 26: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

26

Strong (Identifying) Relationships

Page 27: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

27

Weak Entities

• Weak entity meets two conditions– Existence-dependent

• Cannot exist without entity with which it has a relationship

– Has primary key that is partially or totally derived from parent entity in relationship

• Database designer usually determines whether an entity can be described as weak based on business rules

Page 28: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

28

Weak Entities (continued)

Page 29: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

29

Weak Entities (continued)

Page 30: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

30

Relationship Participation

• Optional participation– One entity occurrence does not require

corresponding entity occurrence in particular relationship

• Mandatory participation– One entity occurrence requires corresponding

entity occurrence in particular relationship

Page 31: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

31

Relationship Participation (continued)

Page 32: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

32

Relationship Participation (continued)

Page 33: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

33

Relationship Participation (continued)

Page 34: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

34

Relationship Participation (continued)

Page 35: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

35

Relationship Degree

• Indicates number of entities or participants associated with a relationship

• Unary relationship– Association is maintained within single entity

• Binary relationship – Two entities are associated

• Ternary relationship – Three entities are associated

Page 36: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

36

Relationship Degree (continued)

Page 37: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

37

Relationship Degree (continued)

Page 38: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

38

Recursive Relationships

• Relationship can exist between occurrences of the same entity set

• Naturally found within unary relationship

Page 39: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

39

Recursive Relationships (continued)

Page 40: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

40

Recursive Relationships (continued)

Page 41: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

41

Recursive Relationships (continued)

Page 42: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

42

Recursive Relationships (continued)

Page 43: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

43

Recursive Relationships (continued)

Page 44: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

44

Recursive Relationships (continued)

Page 45: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

45

Composite Entities

• Also known as bridge entities

• Composed of primary keys of each of the entities to be connected

• May also contain additional attributes that play no role in connective process

Page 46: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

46

Composite Entities (continued)

Page 47: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

47

Composite Entities (continued)

Page 48: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

48

Composite Entities (continued)

Page 49: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

49

Developing an ER Diagram

• Database design is iterative rather than linear or sequential process

• Iterative process – Based on repetition of processes and

procedures

Page 50: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

50

Developing an ER Diagram (continued)

• Building an ERD usually involves the following activities:– Create detailed narrative of organization’s

description of operations– Identify business rules based on description of

operations– Identify main entities and relationships from

business rules– Develop initial ERD– Identify attributes and primary keys that

adequately describe entities– Revise and review ERD

Page 51: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

51

Developing an ER Diagram (continued)

• Tiny College– Tiny College is divided into several schools

• Each school is composed of several departments

– Each department may offer courses

– Each department may have many professors assigned to it

– Each professor may teach up to four classes; each class is section of course

– Student may enroll in several classes, but (s)he takes each class only once during any given enrollment period

Page 52: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

52

Developing an ER Diagram (continued)

• Tiny College (continued)– Each department has several students

• Each student has only a single major and is associated with a single department

– Each student has an advisor in his or her department• Each advisor counsels several students

– The relationship between class is taught in a room and the room in the building

Page 53: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

53

Developing an ER Diagram (continued)

Page 54: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

54

Developing an ER Diagram (continued)

Page 55: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

55

Developing an ER Diagram (continued)

Page 56: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

56

Developing an ER Diagram (continued)

Page 57: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

57

Developing an ER Diagram (continued)

Page 58: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

58

Developing an ER Diagram (continued)

Page 59: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

59

Developing an ER Diagram (continued)

Page 60: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

60

Developing an ER Diagram (continued)

Page 61: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

61

Developing an ER Diagram (continued)

Page 62: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

62

Developing an ER Diagram (continued)

Page 63: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

63

Developing an ER Diagram (continued)

Page 64: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

64

Database Design Challenges: Conflicting Goals

• Database design must conform to design standards

• High processing speeds are often a top priority in database design

• Quest for timely information might be focus of database design

Page 65: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

65

Database Design Challenges: Conflicting Goals (continued)

Page 66: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

66

Summary

• Entity relationship (ER) model – Uses ERD to represent conceptual database

as viewed by end user– ERM’s main components:

• Entities• Relationships• Attributes

– Includes connectivity and cardinality notations

Page 67: Entity Relationship (ER) Modeling. 2 In this chapter, you will learn: The main characteristics of entity relationship components How relationships between

67

Summary (continued)

• Connectivities and cardinalities are based on business rules

• In ERM, M:N relationship is valid at conceptual level

• ERDs may be based on many different ERMs

• Database designers are often forced to make design compromises