The document discusses the entity-relationship model and ER diagrams. It covers basic ER concepts like entities, attributes, and relationship types. It also discusses designing ER schemas and modeling different types of relationships.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
9 views31 pages
Elmasri 6e Ch07
The document discusses the entity-relationship model and ER diagrams. It covers basic ER concepts like entities, attributes, and relationship types. It also discusses designing ER schemas and modeling different types of relationships.
Chapter 7 Outline (cont’d.) Refining the ER Design for the COMPANY Database ER Diagrams, Naming Conventions, and Design Issues Relationship Types of Degree Higher than Two
Data Modeling Using the Entity-Relationship (ER) Model Entity-Relationship (ER) model Popular high-level conceptual data model ER diagrams Diagrammatic notation associated with the ER model Unified Modeling Language (UML)
Using High-Level Conceptual Data Models for Database Design Requirements collection and analysis Database designers interview prospective database users to understand and document data requirements Result: data requirements Functional requirements of the application
Using High-Level Conceptual Data Models (cont’d.) Conceptual schema Conceptual design Description of data requirements Includes detailed descriptions of the entity types, relationships, and constraints Transformed from high-level data model into implementation data model
Using High-Level Conceptual Data Models (cont’d.) Logical design or data model mapping Result is a database schema in implementation data model of DBMS Physical design phase Internal storage structures, file organizations, indexes, access paths, and physical design parameters for the database files specified
A Sample Database Application COMPANY Employees, departments, and projects Company is organized into departments Department controls a number of projects Employee: store each employee’s name, Social Security number, address, salary, sex (gender), and birth date Keep track of the dependents of each employee
Relationship Types, Relationship Sets, Roles, and Structural Constraints Relationship When an attribute of one entity type refers to another entity type Represent references as relationships not attributes
Relationship Degree Degree of a relationship type Number of participating entity types Binary, ternary Relationships as attributes Think of a binary relationship type in terms of attributes
Refining the ER Design for the COMPANY Database Change attributes that represent relationships into relationship types Determine cardinality ratio and participation constraint of each relationship type
Proper Naming of Schema Constructs Choose names that convey meanings attached to different constructs in schema Nouns give rise to entity type names Verbs indicate names of relationship types Choose binary relationship names to make ER diagram readable from left to right and from top to bottom
Design Choices for ER Conceptual Design Model concept first as an attribute Refined into a relationship if attribute is a reference to another entity type Attribute that exists in several entity types may be elevated to an independent entity type Can also be applied in the inverse
Alternative Notations for ER Diagrams Specify structural constraints on relationships Replaces cardinality ratio (1:1, 1:N, M:N) and single/double line notation for participation constraints Associate a pair of integer numbers (min, max) with each participation of an entity type E in a relationship type R, where 0 ≤ min ≤ max and max ≥ 1
Relationship Types of Degree Higher than Two Degree of a relationship type Number of participating entity types Binary Relationship type of degree two Ternary Relationship type of degree three
Choosing between Binary and Ternary (or Higher-Degree) Relationships Some database design tools permit only binary relationships Ternary relationship must be represented as a weak entity type No partial key and three identifying relationships Represent ternary relationship as a regular entity type By introducing an artificial or surrogate key
Summary Basic ER model concepts of entities and their attributes Different types of attributes Structural constraints on relationships ER diagrams represent E-R schemas UML class diagrams relate to ER modeling concepts