Top Banner

Click here to load reader

of 37

Chapter 3 Data Modeling Using the Entity-Relationship (ER) Model.

Dec 25, 2015

Download

Documents

Domenic Lewis
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
  • Slide 1
  • Chapter 3 Data Modeling Using the Entity-Relationship (ER) Model
  • Slide 2
  • ER Model Concepts ER Model (Entity-relationship model): describes data as entities, attributes and relationships. Entities: Entities are specific objects or things in the mini-world that are represented in the database. The basic object that the ER model represents is an entity, Example: the EMPLOYEE John Smith. Attributes: are properties used to describe an entity. Each entity has attributes. Example: an EMPLOYEE entity may have a Name, Address, Sex, Birthdate.
  • Slide 3
  • ER Model Concepts A specific entity will have a value for each of its attributes. Example: a specific employee entity may have Name='John Smith', Address ='731, Fondren, Houston, TX', Sex='M', BirthDate='09-JAN-55 Each attribute has a value set (or data type) associated with it e.g. integer, string, enumerated type,
  • Slide 4
  • Types of Attributes Simple (or atomic): Attributes that are not divisible. For example, Sexual, SSN(Social Security number), Composite: Attributes can be divided into smaller subparts, which represent more basic attributes with independent meanings. Example: Address (Apt#, House#, Street, City, State, ZipCode, Country) Name (FirstName, MiddleName, LastName). Composition may form a hierarchy where some components are themselves composite.
  • Slide 5
  • Types of Attributes
  • Slide 6
  • Multi-valued: In some cases an attribute can have a set of values for the same entity Example: Color of a CAR Previous Degrees of a STUDENT. A multivalued attribute may have lower and upper bounds to constrain the number of values allowed for each individual entity.
  • Slide 7
  • Types of Attributes Complex Attributes: Composite and multivalued attributes can be nested in an arbitrary way. Arbitrary nesting is represented by grouping components of a composite attribute between parentheses () and separating the components with commas, and by displaying multivalued attributes between braces {}. Example: {AddressPhone({Phone(AreaCode, PhoneNumber)}, Address(StreetAddress(Number, Street, ApartmentNumber), City,State,Zip) ) }
  • Slide 8
  • Entity Types and Key Attributes Entity type: Entities with the same basic attributes are grouped or typed into an entity type. For example, the EMPLOYEE entity type. Key Attributes: An entity type usually has an attribute whose values are distinct for each individual entity in the entity set. Such an attribute is called a key attribute, and its values can be used to identify each entity uniquely.
  • Slide 9
  • Entity Types and Key Attributes A key attribute may be composite. For example, VehicleTagNumber is a key of the CAR entity type with components (Number, State). An entity type may have more than one key. For example, the CAR entity type may have two keys: VehicleIdentificationNumber (popularly called VIN) VehicleTagNumber (Number, State), also known as license_plate number.
  • Slide 10
  • Entity Types and Key Attributes
  • Slide 11
  • Slide 12
  • NOTATION FOR ER SCHEMAS Entity Type Weak entity type Relationship type Identifying relationship type Attribute Key attribute Multivalued attribute Composite attribute Derived attribute Total participation of E 2 in R Cardinality ratio 1:n for E 1 :E 2 in r Structural constraint (min, max) on participation of E in R E1E1 R E2E2 E1E1 R E2E2 R (min,max) E N
  • Slide 13
  • Relationships and Relationship Types A relationship: relates two or more distinct entities with a specific meaning. Example: EMPLOYEE John Smith works on the ProductX PROJECT. A relationship type R among n entity types E1, E2, , En defines a set of associations among entities from these entity types. Example, the WORKS_ON relationship type in which EMPLOYEEs and PROJECTs participate.
  • Slide 14
  • Relationships and Relationship Types
  • Slide 15
  • More than one relationship type can exist with the same participating entity types. Example: MANAGES and WORKS_FOR are distinct relationships between EMPLOYEE and DEPARTMENT, but with different meanings and different relationship instances.
  • Slide 16
  • Relationships and Relationship Types
  • Slide 17
  • Relationship Degree The degree of a relationship type is the number of participating entity types. Binary: A relationship type of degree two Example: Both MANAGES and WORKS_ON are binary relationships Ternary: Relationship types of degree three n-ary: Relationship types of degree n.
  • Slide 18
  • Relationship Degree
  • Slide 19
  • Role Names, and Recursive Relationships Role Names: Each entity type that participates in a relationship type plays a role in the relationship. The role name signifies the role that a participating entity from the entity type plays in each relationship instance. Recursive relationships: The same entity type participates more than once in a relationship type in different roles.
  • Slide 20
  • Role Names, and Recursive Relationships For example, SUPERVISION relationships between EMPLOYEE (in role of supervisor or boss) and (another) EMPLOYEE (in role of subordinate or worker).
  • Slide 21
  • Role Names, and Recursive Relationships Recursive Relationship Type is: SUPERVISION (participation role names are shown)
  • Slide 22
  • Example COMPANY Database Requirements of the Company: The company is organized into DEPARTMENTs. Each department has a name, number and an employee who manages the department. Each department controls a number of PROJECTs. Each project has a name, number and is located at a single location. We store each EMPLOYEEs social security number, address, salary, sex, and birthdate.
  • Slide 23
  • Example COMPANY Database 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. Each employee may have a number of DEPENDENTs. For each dependent, we keep track of their name, sex, birthdate, and relationship to employee.
  • Slide 24
  • Initial Conceptual Design of the COMPANY Database
  • Slide 25
  • Slide 26
  • Weak Entity Types An entity that does not have a key attribute A weak entity 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
  • Slide 27
  • Weak Entity Types Example: Suppose that a DEPENDENT entity is identified by the dependents 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
  • Slide 28
  • Constraints on Relationship Types Maximum Cardinality (The cardinality ratio) for a binary relationship specifies the maximum number of relationship instances that an entity can participate in. One-to-one (1:1) One-to-many (1:N) or Many-to-one (N:1) Many-to-many Minimum Cardinality (participation constraint or existence dependency constraints) Zero (optional participation, not existence- dependent) One or more (mandatory, existence-dependent)
  • Slide 29
  • Constraints on Relationship Types
  • Slide 30
  • Slide 31
  • Cardinality ratios for binary relationships are represented on ER diagrams by displaying 1, M, and N.
  • Slide 32
  • Attributes of Relationship types 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.
  • Slide 33
  • Attributes of Relationship types
  • Slide 34
  • 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): min=0, max=n Must have min max, min 0, max 1 Derived from the knowledge of mini-world constraints
  • Slide 35
  • Alternative (min, max) notation for relationship structural constraints Example: A department has exactly one manager and an employee can manage at most one department. Specify (0,1) for participation of EMPLOYEE in MANAGES Specify (1,1) for participation of DEPARTMENT in MANAGES An employee can work for exactly one department but a department can have any number of employees.
  • Slide 36
  • Alternative (min, max) notation for relationship structural constraints Specify (1,1) for participation of EMPLOYEE in WORKS_FOR Specify (0,n) for participation of DEPARTMENT in WORKS_FOR
  • Slide 37
  • COMPANY ER Schema Diagram using (min, max) notation