程序代做 INFO20003 Database Systems

INFO20003 Database Systems
Dr Renata Borovica-Gajic
Lecture 03 Introduction to Data Modelling (ER)
INFO20003 Database Systems Week 2

Copyright By PowCoder代写 加微信 powcoder

Database Development Lifecycle: Review
Database Planning Systems Definition
Conceptual Design
Logical Design
Requirements Definition and Analysis
Physical Design
Application Design
Implementation
Operational Maintenance
Data Conversion and Loading
INFO20003 Database Systems © University of Melbourne 3

The Entity-Relationship Model
• Basic ER modeling concepts • Constraints
• Conceptual Design
Readings: Chapter 2, Ramakrishnan & Gehrke, Database Systems
INFO20003 Database Systems © University of Melbourne 4

Conceptual Design: Objectives
• What are the entities and relationships in the enterprise?
• What information about these entities and relationships should
we store in the database?
• What are the integrity constraints that hold?
INFO20003 Database Systems © University of Melbourne 5

ER Model: Entity & its attributes
• Entity: Real-world object distinguishable from other objects. An entity is described (in DB) using a set of attributes.
• Entity Set: A collection of entities of the same type (e.g. all employees)
– All entities in an entity set have the same set of attributes – Each entity has a key (underlined)
SSN Name Age
entity set
INFO20003 Database Systems © University of Melbourne 6

ER Model: Relationship
• Relationship: Association among two or more entities. Relationships can have their own attributes.
– Example: Fred works in the Pharmacy department.
• Relationship Set: Collection of relationships of the same type.
– Example: Employees work in departments. Name since Name
SSN Age ID Budget works in
relationship set
(with a descriptive attribute)
Department
INFO20003 Database Systems © University of Melbourne 7

ER Model: Relationship roles
Same entity set can participate in:
• different relationship sets, or even • different “roles” in the same set
different relationships
subor- dinate
Department
super- visor
reports to
different roles
INFO20003 Database Systems © University of Melbourne 8

The Entity-Relationship Model
• Basic ER modeling concepts • Constraints
• Conceptual Design
Readings: Chapter 2, Ramakrishnan & Gehrke, Database Systems
INFO20003 Database Systems © University of Melbourne 9

Key Constraints: Types
Key constraints determine the number of objects taking part in the relationship set (how many from each side)
Types of key constraints:
Many-to-Many One-to-Many One-to-One (Many-to-One)
INFO20003 Database Systems © University of Melbourne 10

Key Constraints: Many-to-Many
An employee can work in many departments; a department can have many
employees.
Many is represented by a line (red is here just to emphasize it – no need to color).
Department
Employee works in Department
INFO20003 Database Systems © University of Melbourne 11

Key Constraints: One-to-Many
One-to-many constrains one entity set to have a single entity per a relationship. An entity of that set can never participate in two relationships of the same relationship set. This is called a key constraint and is represented by an arrow.
Each department has at most one manager. This is the key constraint on Manages.
Age ID Budget
key constraint
Department
Employee manages
Department
INFO20003 Database Systems © University of Melbourne 12

Participation Constraints
Participation constraint explores whether all entities of one entity set take part in a relationship. If yes this is a total participation, otherwise it is partial. Total participation says that each entity takes part in “at least one” relationship, and is represented by a bold line.
Example: Every employee must work in a department. Each department has at least one employee. Each department has to have a manager (but not everyone is a manager).
since manages works in
Department
Total participation
Total participation
Partial participation
Total participation
Employee works in Department
Employee manages Department
INFO20003 Database Systems © University of Melbourne 13

Weak Entities
A weak entity can be identified uniquely only by considering (the primary key of) another (owner) entity. They are represented as a “bold” rectangle.
• Owner entity set and weak entity set must participate in a relationship where each weak entity has one and only one strong entity to depend on (key constraint)
• Weak entity set must have total participation in this relationship set. Such relationship is called identifying and is represented as “bold”.
Weak entities have only a “partial key” (dashed underline) and they are identified uniquely only when considering the primary key of the owner entity
INFO20003 Database Systems © University of Melbourne 14

Ternary Relationships
In general, we can have n-ary relationships, and relationships can have attributes
This is a ternary relationship with one relationship attribute
Department
INFO20003 Database Systems © University of Melbourne 15

Ternary vs. Binary Relationships
Are these two models the same?
Department
Department
can supply Quantity
deals with
Second model:
• S “can supply” P, D “needs” P, and D “deals with” S does not imply that D has agreed to buy P from S. Not the same!
INFO20003 Database Systems © University of Melbourne 16

Special attribute type: Multi-valued attributes
• Multi-valued attributes can have multiple (finite set of) values of the same type.
For employees we need to capture their home phone number and work phone number.
SSN Name Age
Multi-valued attribute
INFO20003 Database Systems 17

Special attribute type: Composite attributes
• Composite attributes have a structure hidden inside (each element can be of different type).
For employees we need to capture an address consisting of a postcode,
street name and number.
Street name Street num.
Composite attribute
Postcode Address
INFO20003 Database Systems 18

Now you try
University database schema:
• Entities: Courses, Professors • Each course has id, title, time
• Make up suitable attributes for professors
INFO20003 Database Systems © University of Melbourne 19

Now you try
1. Every professor must teach some course.
2. Every professor teaches exactly one course (no more, no less).
3. Every professor teaches exactly one course (no more, no less), and every course must be taught by some professor.
INFO20003 Database Systems © University of Melbourne 20

The Entity-Relationship Model
• Basic ER modeling concepts • Constraints
• Conceptual Design
Readings: Chapter 2, Ramakrishnan & Gehrke, Database Systems
INFO20003 Database Systems © University of Melbourne 21

Conceptual Design Using the ER Model
• Design choices:
– Should a concept be modelled as an entity or an attribute?
– Should a concept be modelled as an entity or a relationship?
– Should we model relationships as binary, ternary, n-ary?
• Constraints in the ER Model:
–A lot of data semantics can (and should) be captured
INFO20003 Database Systems © University of Melbourne 22

Entity vs. Attribute
Should “address” be an attribute of Employees or an entity
(related to Employees)? Answer:
• Depends upon how we want to use address information, and the semantics of the data:
– If we have several addresses per employee, address must be an entity
INFO20003 Database Systems © University of Melbourne 23

Notes on the ER design
• ER design is subjective. There are often many ways to model a given scenario.
• Analyzing alternatives can be tricky, especially for a large enterprise. Common choices include:
–Entity vs. attribute, entity vs. relationship, binary or n-ary relationship.
• There is no standard/notation (we will cover two notations, today we learned Chen’s notation)
INFO20003 Database Systems © University of Melbourne 26

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
–Originally proposed by , 1976
Note: there are many variations on ER model
• Basic constructs: entities, relationships, and attributes (of entities and relationships)
• Some additional constructs: weak entities
INFO20003 Database Systems © University of Melbourne 27

Database Development Lifecycle: Review
Database Planning Systems Definition
Conceptual Design
Logical Design
Requirements Definition and Analysis
Physical Design
Application Design
Implementation
Operational Maintenance
Data Conversion and Loading
INFO20003 Database Systems © University of Melbourne 28

What’s Examinable
• Need to be able to draw conceptual diagrams on your own ‒ Givenaproblem,determineentities,attributes,relationships
‒ What is key constraint and participation constraint, weak entity?
‒ Determine constraints for the given entities & their relationships
INFO20003 Database Systems © University of Melbourne 29

Next Lecture
• Continue exploring modelling
– From conceptual through to physical – Introducing relational model
INFO20003 Database Systems © University of Melbourne 30

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com