Database Systems I Foundations of Databases

Size: px
Start display at page:

Download "Database Systems I Foundations of Databases"

Transcription

1 Database Systems I Foundations of Databases Summer term 2010 Melanie Herschel melanie.herschel@uni-tuebingen.de Database Systems Group, University of Tübingen 1 Chapter 2 The Entity-Relationship Model After completing this chapter, you should be able to: Motivate and explain the three phases of database design, Evaluate the significance of the Entity-Relationship Model (ER model) for DB design, Enumerate the basic constructs of the ER model, Develop ER diagrams (schemas in the ER model) for a given application. 1. Introduction 2. ER-Modeling 3. Relational model(ing) 4. Relational algebra 5. SQL 6. Programming 2

2 Chapter 2 The ER-Model Database Design Overview Basic ER Constructs Cardinalities Keys, Weak Entities Design Principles 3 Foundations of Databases Summer term 2010 Melanie Herschel University of Tübingen Database Design Overall goal of DBMS usage: Efficiently develop programs to support given real-world tasks. These programs need to store data persistently. To develop these programs, apply proven methods of software engineering specialized to support data-intensive programs. Database design Database design is the process of developing a database schema for a given application. Database design is a subtask of the overall software engineering effort. 4

3 Database Design The specification of programs and data is intertwined: The schema should contain the data needed by the programs. Programs are often easy to develop once the structure of the data to be manipulated has been specified. Data, however, is an independent resource: Typically, additional programs will be developed later based on the collected data. Also, ad-hoc queries will be posed against the DB. 5 Database Design During DB design, a formal model of the relevant aspects of the real world ( mini world, domain of discourse ) must be built. Once the DB is up and running, questions will be posed against the DB. Knowledge of these questions beforehand is important input to the DB design process and helps to identify the relevant parts of the real world. In some sense, the real world is the measure of correctness for the DB schema: the possible DB states should correspond to the states of the real world. 6

4 Database Design DB design is not easy for a variety of reasons: Expertise: The designer must become an expert for the application domain or needs to talk to such experts. Depending on the domain, these experts might not be used to give a complete and formal account of their field. Flexibility: The real world typically permits exceptions and corner cases. Does the DB schema need to reflect these? Size: Database schemas may become huge (in terms of number of relations, attributes, constraints). Due to this complexity, DB design is a multi-step process. 7 Database Design Three phases of DB design Conceptual Database Design Produces the initial model of the mini world in a conceptual data model (e.g., in the ER model). Logical Database Design Transforms the conceptual schema into the data model supported by the DBMS (e.g., the relational model). Physical Database Design Design indexes, table distribution, buffer size, etc. to maximize performance of the final system (subject of DBSII - Implementation of database systems ). 8

5 Database Design Why multiple design phases? Partition the problem, attack one sub-problem after the other. For example, during conceptual design there is no need to worry about performance aspects or limitations of the specific SQL dialect of the RDBMSs. DBMS features do not influence the conceptual design and only partially influence the logical design.!thus, the conceptual design work is not invalidated if a different DBMS is used later on. 9 The ER Model Proposed by Peter Chen (1976), today at Louisiana State University. The ER model comes with a graphical notation which helps to establish quick overviews of database application schemas. Such ER diagrams are also a great way to communicate schemas to non-expert/future DB users. 10

6 Example ER schema in graphical notation Actor (1, m) (1, n) stars_in Firstname Lastname DOB Title Year Director This mini world talks about actors and movies. Actors star in movies. Actors have a firstname, a lastname, and a date of birth (DOB) s have a title, a year, and a director. 11 Example A possible state of this mini world Actor Harrison Ford firstname lastname DOB title year director title year director Star Wars 1977 Lucas Raiders of the Lost Ark 1981 Spielberg 12

7 The ER Model The Entity-Relationship Model is often referred to as a semantic data model, because it more closely resembles real world scenarios than, e.g., the relational model. In the ER model, we model the concept of Actor. In the relational model we deal with names and dates of birth. In the ER model, there is a distinction between entities (objects) and relationships between such entities. In the relational model, both concepts are represented by relations. There are no ER Model DBMS. Instead, we will describe a translation of ER model concepts into the relational model. 13 Chapter 2 The ER-Model Database Design Overview Basic ER Constructs Cardinalities Keys, Weak Entities Design Principles 14 Foundations of Databases Summer term 2010 Melanie Herschel University of Tübingen

8 Basic ER Model Concepts Entity An entity is an object in the mini world about which information is to be stored. Examples: actors, movies, studios, awards. Note: entities do not have to correspond to objects of physical existence. Entities may also represent conceptual objects like, e.g., vacation. The mini world that has to be modeled can contain only a finite number of objects. It must be possible to distinguish entities from each other, i.e., objects must have some identity. Examples: entity book identified by ISBN number, entity vacation identified by travel agency booking number. 15 Basic ER Model Concepts Attribute An attribute is a property or feature of an entity (or relationship, see below). Example: the title of this movie entity is Star Wars. The value of an attribute is an element of a data type like string, integer, date. These values have a printable representation (which entities have not). 16

9 Basic ER Model Concepts Relationship A relationship represents a relation not in the strict relational model sense between pairs of entities (a binary relationship). Example: Ford (an entity) stars in (a relationship) the movie Star Wars (an entity). Relationship is often used as an abbreviation for Relationship type (see next slide). 17 Basic ER Model Concepts Entity and Relationship Type Entity Type: A set of similar entities (similar with respect to the information which has to be stored about them), i.e., entities which have the same attributes. Example: All actors vs. all directors. Relationship Type: A set of similar relationships, i.e., relationships which have the same attributes. Example: X stars in movie Y. 18

10 ER Diagrams Basic Graphical Syntax Entity type E E Attribute A of entity type E A E Binary relationship R between entity types E1 and E2 E1 R E2 19 ER Diagrams Recursive Relationships Relationships may also exist between entities of the same type ( recursive relationship ) Recursive relationship Original is_sequel Sequel In this case, role names have to be attached to the connecting edges. In the ER model, role names may be attached to any kind of relationship for documentation purposes. 20

11 ER Diagrams Attributes of Relationships Relationships may have attributes, too: Relationship attributes Actor stars_in Role This models the fact that a role is stored for every pair of actor X and Y such that X starred in Y. 21 ER Diagrams Graphical Syntax An ER diagram contains boxes, diamonds, ovals, plus interconnecting lines. Boxes, diamonds, and ovals are each labelled by a string. Box labels are unique in the entire diagram. Oval labels are unique for a single box or diamond. Diamond labels are unique for a pair of connected boxes. Interconnecting lines are only allowed between box diamond, box oval, diamond oval. A diamond has exactly two connecting lines to boxes. There may be any number of connections to ovals. An oval has exactly one connecting line. 22

12 ER Example Modeling a mini world: define an ER diagram Information about movies is to be stored. For each movie, the title, release date, genre, and homepage URI are relevant. s may be granted awards (e.g., Oscars, Palme d Or,...) Relevant award information are the name, the category, and the year of the award. Each movie is produced by a studio (of a given name and address). 23 ER Schemas: Semantics Definition A DB state I interprets the symbols in the ER schema by defining A finite set I(E) for every entity type E, A mapping I(A):I(E) val(d) for every attribute A of an entity type E, where D is the data type of A and val(d) is the domain of D, A relation I(R) I(E1)! I(E2) for every relationship R between entity types E1 and E2. A mapping I(A):I(R) val(d) for every attribute A of relationship R (D is the data type of A). 24

13 ER Schemas: Semantics Example state corresponding to ER schema Actor stars_in Firstname Lastname DOB Title Year Director I(Actor) = {JD,HBC} I(Firstname) = f1 with f1(jd) = Jonny and f1(hbc) = Helena Bonham I(Lastname) = f2 with f2(jd) = Depp and f2(hbc) = Carter I(DOB) = f3 with f3(jd) = and f3(hbc) = I() = {CB,ST, PC} I(Title) = g1 with g1(cb) = A Corpse Bride, g1(st) = Sweeney Todd, and g1(pc) = Pirates of the Caribbean I(Year) = g2 with g2(cb) = 2003, g2(st) = 2007, and g2(pc) = 2006 I(Director) = g3 with g3(cb) = Tim Burton, g3(st) = Tim Burton, g3(pc) = Gore Verbinski 25 ER Schemas: Semantics Example state corresponding to ER schema (cont.) I(stars_in) = {(JD, CB), (JD, ST), (JD,PC), (HBC,CB), (HBC,ST) } Actor JD HBC CB x x ST x x PC x Note: A relationship is interpreted by a set of entity pairs and thus is unique for two given entities. 26

14 ER Schemas: Semantics Consequences of the ER semantics Cinema shows Time Consider the above ER diagram. Suppose a cinema shows the same movie twice a day (at 3pm and 6pm). Can this information be stored in the given schema? 27 From n-ary Relationships to Binary Relationships We have seen that an ER model represents binary relationships only. However, in the real world, a relationship may relate more than two entities to each other. An n-ary relationship Actor has_contract_with Studio 28

15 From n-ary Relationships to Binary Relationships To transform an n-ary relationship to a binary relationship, we 1.Create a new association entity type. 2.Introduce a relationship between the new entity type and the old entity types. 3.If there is an entity with multiple roles, create a relationship type per role. 4.Attributes of the old relationship type are appended to the new entity type. 29 From n-ary Relationships to Binary Relationships An n-ary relationship Actor has_contract_with Contracting studio Studio Producing studio Actor signed_contract Contract is_subject_of is_contracting_studio is_producing_studio Studio 30

16 From n-ary Relationships to Binary Relationships Modeling that a cinema shows the same movie twice a day Cinema shows Time 31 IS-A: A Special Type of Relationship Subclass Special case of the (super)class Less entities fall into the subclass (compared to the entities falling in the superclass) More (specific) attributes Possibly more relationships to other entities. The ER model allows to specify a subclass in the form of an IS-A relationship Represented as a triangle Tip is showing to the superclass The relationship implicitly is a 1:1 relationship (and is not explicitly represented) 32

17 IS-A: A Special Type of Relationship Subclasses to movies Subclasses of movies are Animation movies One additional attribute Crime movies One additional relationship Title Year Genre Length IS-A IS-A Actor is_voice_of Animation s Crime s Weapons 33 IS-A: A Special Type of Relationship The IS-A relationship forms trees, a class may have multiple subclasses, but a class may not have multiple superclasses. An entity may consist of several components of the IS-A-tree Star Wars has four attributes. Cindarella has four attributes plus a Voices relationship. Der Dritte Mann has four attributes plus the Weapons attribute. Roger Rabbit has four attributes, plus the Weapons -Attribute and the Voices -Relationship. 34

18 Chapter 2 The ER-Model Database Design Overview Basic ER Constructs Cardinalities Keys, Weak Entities Design Principles 35 Foundations of Databases Summer term 2010 Melanie Herschel University of Tübingen Cardinalities M:N Relationships In general, an arbitrary number of entities of type A can relate to an arbitrary number of entities of type B via a binary relationship. An actor can star in numerous movies. A movie set comprises many actors. An entity of type A may not relate to any entity of type B, and vice versa. Meet the many actors sitting in LA cafes that have never played in any movie. A B National geographic movies do not have actors.! Many-to-Many or m:n relationship Special cases are one-to-many (1:n) and one-to-one (1:1) relationships. 36

19 Cardinalities 1:N Relationships An entity of type A can relate to any number of entities of type B. An entity of type B can relate to at most one entity of type A. Example A movie may win many awards. An award is granted to one movie. Again, an entity of type A may not relate to any entity of type B, and vice versa. A B A movie may not win any award. 37 Cardinalities 1:1 Relationships An entity of type A can relate to at most one entity of type B. An entity of type B can relate to at most one entity of type A. Example A studio may only have one President. One President may only head one studio. Again, an entity of type A may not relate to any entity of type B and vice versa. A B A studio may temporarily not have any president. 38

20 Cardinalities The (min, max) notation The ER model introduces the (min, max) notation to specify an interval of possible participations in an relationship: (m E 1, n 1 ) (m 1 R 2, n 2 ) E 2 An entity of type E1 may be related to at least m1 and at most n1 entities of type E2. Likewise, m2 is the minimum number and n2 is the maximum number of E1 entities to which an E2 entity is related. 39 Cardinalities The (min, max) notation Formal Semantics For every DB state I and every entity e1 I(E1): m1 " {e2 I(E2) (e1, e2) I(R) } " n1 For every DB state I and every entity e2 I(E2): m2 " {e1 I(E1) (e1, e2) I(R) } " n2 Extensions: * may be used as maximum if there is no limit. (0, *) means no restriction at all (general relationship). Note that the maximum cardinalities on each side are used to distinguish between m:n, 1:n, and 1:1 relationships. 40

21 Cardinalities The (min, max) notation Studio Presidents (1:1 relationship) A studio can have at most one president and a president can preside at most one studio. President (0,1) (0,1) is_president_of Studio awards (1:n relationship) A movie award goes exactly to one movie. A movie may be awarded multiple awards (but maybe none at all). Award (1,1) (0,*) awarded_to 41 Cardinalities The (min, max) notation Derive cardinalities from verbal specifications Besides normal customers, the database may contain customers who have not yet ordered anything. Order (, ) (, ) from Customer Derive cardinalities from verbal specifications An order can contain several products. Order (, ) (, ) for Product 42

22 Cardinalities Alternative notations Leave the minimum cardinality unspecified. This notation exactly represents m:n, 1:n, or 1:1 relationships. awards (1:n relationship) Award N 1 awarded_to 43 Cardinalities Alternative notations Sometimes found in software supporting visual ER diagram development (e.g., in Oracle Designer TM ): awards (1:n relationship) Award awarded to won The crow foot indicates the many side. Dashed lines indicate optional participiation. Relationship roles are given (for both sides). 44

23 Cardinalities Alternative notations #$%&'()*+',%&-.//'012'3+// Cardinalities Example Keys in our movie scenario Add cardinalities using the (min,max) notation Actor signed_contract Contract is_subject_of is_contracting_studio is_producing_studio Studio 46

24 Chapter 2 The ER-Model Database Design Overview Basic ER Constructs Cardinalities Keys, Weak Entities Design Principles 47 Foundations of Databases Summer term 2010 Melanie Herschel University of Tübingen Keys ER key A key K of an entity type E is an attribute of E which uniquely identifies the entities of this type. No two different entities share the same value for the key attribute, i.e., I(K) is injective for all DB states I. Composite keys are allowed. K A 1 A 2 E 48

25 Keys Keys in our movie scenario s Is title a good candidate key? (4 King Kong movies in IMDB) How about Title + Year? (Still around 300 duplicate keys ) Actor Firstname+Lastname or Firstname+Lastname+DOB Studio Name 49 Where is the Key? 50

26 Keys Keys in our movie scenario Underline keys Firstname Contract_ID Date_Signed Title Year Lastname Actor signed_contract Contract is_subject_of Type DOB is_contracting_studio is_producing_studio Length Studio Name Address 51 Weak Entities In many schemas, some entities describe a kind of detail that cannot exist without a master (or owner) entity. If entities are part of an IS-A hierarchy If entities are association entities that have been created to eliminate n-ary relationships. If the existence of the detail entity (e.g., a room) requires the existence of the master entity (e.g., a building). In such a case, 1.There is a relationship with cardinality (1, 1) on the detail entity side, and in addition 2.The key of the master is inherited and becomes part of the key of the detail entity. 52

27 Weak Entities Without a specific ER construct for this case, we would require the following additional constraint: If two entities are in has relationship, e.g., an invoice and a position, Then their attribute Inv No are required to have identical values. For example, invoice #12 cannot have position 2 in invoice #42 as detail. Such constraints occur if an entity does not have a key by itself, but it is only unique in the context of some other (master) entity. 53 Weak Entities Note: In such cases, keys are always composite. Examples: A classroom is identified by a building and a room number. A section in a book is identified by a chapter and a section title. A web page URI is composed of a web server DNS address and a path on that server. There is also an existence dependency. For instance, if the building is pulled down, the classrooms automatically disappear. If the web server is shut down, all URIs on that server cease to function. 54

28 Weak Entities In the ER model, such scenarios are modeled via weak entities (nonweak entities are also called strong entities). In ER diagrams, weak entities and their identifying relationships are indicated by double lines. For the weak entity, the inherited part of the key is not shown. Notation of weak entities Invoice (1,*) (1,1) has Position Inv_No Date Pos 55 Weak Entities Usage of weak entities is required only if the key of one entity contains the key of a related entity. A weak entity adds further key attributes to the master key. Weak entities are normal entities except that their key is constructed in a special way. Weak entities may themselves be masters of other weak entities (building an entire hierarchy of dependencies). 56

29 Weak Entities Modeling with weak entities Model a set of online quizzies (multiple choice tests). Each quiz is identified by a title, each question within a quiz is numbered, and each possible answer to a given question is referenced by a letter. For each question and answer, the associated text is stored. Answers are classified into correct and incorrect ones. What is the complete key for each of the occurring entity types? 57 Association Entities Revisited We saw that association entities are created in order to resolve n-ary relationships. For instance, we found that modeling a cinema that shows the same movie twice a day requires a ternary relationship. Use an association entity: turn relationship into weak entity with multiple owners. Inherits keys of all owners. Association entity Show Name Address Title Desc Cinema Time does Show of 58

30 Weak Entities in Example Weak entites in our movie scenario Assuming keys and relationships identified earlier, do we have weak entities here? If not, what would need to be changed to obtain at least one? Firstname Contract_ID Date_Signed Title Year Lastname Actor signed_contract Contract is_subject_of Type DOB is_contracting_studio is_producing_studio Length Studio Name Address 59 Chapter 2 The ER-Model Database Design Overview Basic ER Constructs Cardinalities Keys, Weak Entities Design Principles 60 Foundations of Databases Summer term 2010 Melanie Herschel University of Tübingen

31 Basic Principles Design based on application need. Avoid redundancy. Keep it simple! Use relationships wisely (and sparingly). Use attributes wisely (and sparingly). Use weak entities wisely (and sparingly). 61 Design Based on Application Need Entity types and attributes should reflect the reality and should be useful for the application. When modeling movies, gender is not a sensible attribute. For applications like Amazon, storing the address of each actor does not make much sens. Relationship types should reflect relationships in the real-world or the semantics valid for the application Actors and movies are in an m:n relationship, 1:n, n:1 or 1:1 would not correctly reflect the real world. The relationship between courses and teachers depends on the semantics within the application: - A course is taught by one teacher (1:n) - A team of teachers teaches a course (m:n) 62

32 Avoid Redundancy Redundant information occurs when the same information is expressed in multiple ways. Redundancy wastes space, both on paper and on disk. Redundancy eases the appearance of inconsistencies, as information has to be changed at all places where it is redundantly represented. 63 Keep it Simple KISS: Keep It Simple, St...! Avoid using unnecessary entity types. For instance, do you really care that a movie is represented by a holding and that the holding in turn owns a studio? Avoid using unnecessary relationship types. For instance, does your application really need the distinction between contracting studios and producing studios? Avoid redundancy when relationships can be derived. Avoid using unnecessary attributes. If your application does not use the actor nickname, there is no need to model it. 64

33 Attribute vs. Element Attributes are easier to implement than entities and relationships. An entity type is justified if It represents more than just the name of an object, or it is the n-part or a 1:n relationship. Association entity Show Studio only has a name as attribute. Studio is not the n-part of a 1:n relationship. Studio owns Name Title Title StudioName 65 Summary Three phases of database design: conceptual, logical, and physical DB design. Basic ER constructs: entity types, relationship types, attributes 1:1, 1:N, and M:N relationships and min-max-notation. Inheritance of attributes through IS-A relationship. Keys in ER-models uniquely identify entities Modeling Existence dependency using weak entities Keep it simple! 66

INTRODUCTION TO RELATIONAL DATABASE SYSTEMS

INTRODUCTION TO RELATIONAL DATABASE SYSTEMS INTRODUCTION TO RELATIONAL DATABASE SYSTEMS DATENBANKSYSTEME 1 (INF 3131) Torsten Grust Universität Tübingen Winter 2015/16 1 THE ENTITY-RELATIONSHIP MODEL The Entity-Relationship Model (ER model) has

More information

Entity Relationship Modelling

Entity Relationship Modelling Entity Relationship Modelling Overview Database Analysis Life Cycle Components of an Entity Relationship Diagram What is a relationship? Entities, attributes, and relationships in a system The degree of

More information

Data Analysis 1. Chapter 2.1 V3.1. Napier University Dr Gordon Russell

Data Analysis 1. Chapter 2.1 V3.1. Napier University Dr Gordon Russell Data Analysis 1 Chapter 2.1 V3.1 Copyright @ Napier University Dr Gordon Russell Entity Relationship Modelling Overview Database Analysis Life Cycle Components of an Entity Relationship Diagram What is

More information

Conceptual Design with ER Model

Conceptual Design with ER Model Conceptual Design with ER Model Lecture #2 1/24/2012 Jeff Ballard CS564, Spring 2014, Database Management Systems 1 See the Moodle page Due February 7 Groups of 2-3 people Pick a team name Homework 1 is

More information

A l Ain University Of Science and Technology

A l Ain University Of Science and Technology A l Ain University Of Science and Technology 4 Handout(4) Database Management Principles and Applications The Entity Relationship (ER) Model http://alainauh.webs.com/ http://www.comp.nus.edu.sg/~lingt

More information

Part 9: Introduction to the Entity-Relationship Model

Part 9: Introduction to the Entity-Relationship Model 9. Introduction to the Entity-Relationship Model 9-1 Part 9: Introduction to the Entity-Relationship Model References: Elmasri/Navathe:Fundamentals of Database Systems, 3rd Edition, 1999. Chapter 3, Data

More information

Definition. 02. Data Modeling. Example ABC Company Database. Data Modeling Importance

Definition. 02. Data Modeling. Example ABC Company Database. Data Modeling Importance 0. Data Modeling Definition Data Model = a collection of concepts that can be used to describe the structure of a database Structure = data types, relationships, constraints that should hold for that data

More information

High Level Database Models

High Level Database Models ICS 321 Fall 2011 High Level Database Models Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 9/21/2011 Lipyeow Lim -- University of Hawaii at Manoa 1 Database

More information

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 7 Data Modeling with Entity Relationship Diagrams

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 7 Data Modeling with Entity Relationship Diagrams Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition Chapter 7 Data Modeling with Entity Relationship Diagrams Objectives In this chapter, students will learn: The

More information

High-Level Database Models. Spring 2011 Instructor: Hassan Khosravi

High-Level Database Models. Spring 2011 Instructor: Hassan Khosravi High-Level Database Models Spring 2011 Instructor: Hassan Khosravi Database Modeling and implemnation process Ideas High-Level Design Relational Database Schema Relational DBMS 4.2 The Entity/Relationship

More information

Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys

Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys Chapter 7: Data Modeling Using the Entity- Relationship (ER) Model Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys

More information

CS 146 Database Systems

CS 146 Database Systems DBMS CS 146 Database Systems Entity-Relationship (ER) Model CS 146 1 CS 146 2 A little history Progression of Database Systems In DBMS: single instance of data maintained and accessed by different users

More information

The Next Step: Designing DB Schema. Chapter 6: Entity-Relationship Model. The E-R Model. Identifying Entities and their Attributes.

The Next Step: Designing DB Schema. Chapter 6: Entity-Relationship Model. The E-R Model. Identifying Entities and their Attributes. Chapter 6: Entity-Relationship Model Our Story So Far: Relational Tables Databases are structured collections of organized data The Relational model is the most common data organization model The Relational

More information

Chapter 6: Entity-Relationship Model. The Next Step: Designing DB Schema. Identifying Entities and their Attributes. The E-R Model.

Chapter 6: Entity-Relationship Model. The Next Step: Designing DB Schema. Identifying Entities and their Attributes. The E-R Model. Chapter 6: Entity-Relationship Model The Next Step: Designing DB Schema Our Story So Far: Relational Tables Databases are structured collections of organized data The Relational model is the most common

More information

CMPT 354 Database Systems I

CMPT 354 Database Systems I CMPT 354 Database Systems I Chapter 2 Entity Relationship Data Modeling Data models A data model is the specifications for designing data organization in a system. Specify database schema using a data

More information

Entity Relationship Data Model. Slides by: Shree Jaswal

Entity Relationship Data Model. Slides by: Shree Jaswal Entity Relationship Data Model Slides by: Shree Jaswal Topics: Conceptual Modeling of a database, The Entity-Relationship (ER) Model, Entity Types, Entity Sets, Attributes, and Keys, Relationship Types,

More information

COMP Instructor: Dimitris Papadias WWW page:

COMP Instructor: Dimitris Papadias WWW page: COMP 5311 Instructor: Dimitris Papadias WWW page: http://www.cse.ust.hk/~dimitris/5311/5311.html Textbook Database System Concepts, A. Silberschatz, H. Korth, and S. Sudarshan. Reference Database Management

More information

The Entity-Relationship Model. Steps in Database Design

The Entity-Relationship Model. Steps in Database Design The Entity-Relationship Model Steps in Database Design 1) Requirement Analysis Identify the data that needs to be stored data requirements Identify the operations that need to be executed on the data functional

More information

LECTURE 3: ENTITY-RELATIONSHIP MODELING

LECTURE 3: ENTITY-RELATIONSHIP MODELING LECTURE 3: ENTITY-RELATIONSHIP MODELING Ref. Chapter11 + Appendix F from Database Systems: A Practical Approach to Design, Implementation and Management. Thomas Connolly, Carolyn Begg. 1 IS220 : D a t

More information

A l Ain University Of Science and Technology

A l Ain University Of Science and Technology A l Ain University Of Science and Technology 4 Handout(4) Database Management Principles and Applications The Entity Relationship (ER) Model http://alainauh.webs.com/ 1 In this chapter, you will learn:

More information

THE ENTITY- RELATIONSHIP (ER) MODEL CHAPTER 7 (6/E) CHAPTER 3 (5/E)

THE ENTITY- RELATIONSHIP (ER) MODEL CHAPTER 7 (6/E) CHAPTER 3 (5/E) THE ENTITY- RELATIONSHIP (ER) MODEL CHAPTER 7 (6/E) CHAPTER 3 (5/E) 2 CHAPTER 7 OUTLINE Using High-Level, Conceptual Data Models for Database Design Entity-Relationship (ER) model Popular high-level conceptual

More information

Data Modeling Using the Entity-Relationship (ER) Model

Data Modeling Using the Entity-Relationship (ER) Model CHAPTER 3 Data Modeling Using the Entity-Relationship (ER) Model Copyright 2017 Ramez Elmasri and Shamkant B. Navathe Slide 1-1 Chapter Outline Overview of Database Design Process Example Database Application

More information

The DBMS accepts requests for data from the application program and instructs the operating system to transfer the appropriate data.

The DBMS accepts requests for data from the application program and instructs the operating system to transfer the appropriate data. Managing Data Data storage tool must provide the following features: Data definition (data structuring) Data entry (to add new data) Data editing (to change existing data) Querying (a means of extracting

More information

Chapter Outline. Note 1. Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts

Chapter Outline. Note 1. Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts Chapter Outline Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts Entities and Attributes Entity Types, Value Sets, and Key Attributes Relationships and Relationship

More information

Copyright 2016 Ramez Elmasr and Shamkant B. Navathei

Copyright 2016 Ramez Elmasr and Shamkant B. Navathei CHAPTER 3 Data Modeling Using the Entity-Relationship (ER) Model Slide 1-2 Chapter Outline Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts Entities and Attributes

More information

MIS Database Systems Entity-Relationship Model.

MIS Database Systems Entity-Relationship Model. MIS 335 - Database Systems Entity-Relationship Model http://www.mis.boun.edu.tr/durahim/ Ahmet Onur Durahim Learning Objectives Database Design Main concepts in the ER model? ER Diagrams Database Design

More information

Chapter 4. In this chapter, you will learn:

Chapter 4. In this chapter, you will learn: Chapter Entity Relationship (ER) Modeling Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel 1 In this chapter, you will learn: The main characteristics of entity

More information

Database Systems ER Model. A.R. Hurson 323 CS Building

Database Systems ER Model. A.R. Hurson 323 CS Building ER Model A.R. Hurson 323 CS Building Database Design Data model is a group of concepts that helps to specify the structure of a database and a set of associated operations allowing data retrieval and data

More information

Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts

Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts Chapter Outline Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts Entities and Attributes Entity Types, Value Sets, and Key Attributes Relationships and Relationship

More information

High-Level Database Models (ii)

High-Level Database Models (ii) ICS 321 Spring 2011 High-Level Database Models (ii) Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 1 Logical DB Design: ER to Relational Entity sets to

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 4 Entity Relationship (ER) Modeling

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 4 Entity Relationship (ER) Modeling Database Systems: Design, Implementation, and Management Tenth Edition Chapter 4 Entity Relationship (ER) Modeling Objectives In this chapter, students will learn: The main characteristics of entity relationship

More information

Intro to DB CHAPTER 6

Intro to DB CHAPTER 6 Intro to DB CHAPTER 6 DATABASE DESIGN &THEER E-R MODEL Chapter 6. Entity Relationship Model Design Process Modeling Constraints E-R Diagram Design Issues Weak Entity Sets Extended E-R Features Design of

More information

Relational Database Systems Part 01. Karine Reis Ferreira

Relational Database Systems Part 01. Karine Reis Ferreira Relational Database Systems Part 01 Karine Reis Ferreira karine@dpi.inpe.br Aula da disciplina Computação Aplicada I (CAP 241) 2016 Database System Database: is a collection of related data. represents

More information

Steps in designing a database. Steps in picture. Entity-Relationship Model. Entity Set. Attributes. The Entity-Relationship Data Model

Steps in designing a database. Steps in picture. Entity-Relationship Model. Entity Set. Attributes. The Entity-Relationship Data Model Steps in designing a database The Entity-Relationship Data Model Chapter 2 (Database Design) Analysis: What information needs to be stored? What are the relationships between different components of the

More information

1/24/2012. Chapter 7 Outline. Chapter 7 Outline (cont d.) CS 440: Database Management Systems

1/24/2012. Chapter 7 Outline. Chapter 7 Outline (cont d.) CS 440: Database Management Systems CS 440: Database Management Systems Chapter 7 Outline Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys Relationship

More information

Lecture3: Data Modeling Using the Entity-Relationship Model.

Lecture3: Data Modeling Using the Entity-Relationship Model. College of Computer and Information Sciences - Information Systems Dept. Lecture3: Data Modeling Using the Entity-Relationship Model. Ref. Chapter12 Prepared by L. Nouf Almujally & Aisha AlArfaj Rev. by

More information

Module 2 : Entity-Relationship Model 15

Module 2 : Entity-Relationship Model 15 Module 2 : Entity-Relationship Model 15 Module-02 Entity Relationship Data Model 2.1 Motivation Data modeling is an essential step in the process of creating any Database Application. It helps Database

More information

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 7 Data Modeling with Entity Relationship Diagrams

Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition. Chapter 7 Data Modeling with Entity Relationship Diagrams Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition Chapter 7 Data Modeling with Entity Relationship Diagrams Objectives In this chapter, students will learn: The

More information

Conceptual Database Design. COSC 304 Introduction to Database Systems. Entity-Relationship Modeling. Entity-Relationship Modeling

Conceptual Database Design. COSC 304 Introduction to Database Systems. Entity-Relationship Modeling. Entity-Relationship Modeling COSC 304 Introduction to Database Systems Entity-Relationship Modeling Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca Conceptual Database Design Conceptual database design

More information

Requirement Analysis & Conceptual Database Design

Requirement Analysis & Conceptual Database Design Requirement Analysis & Conceptual Database Design Problem analysis Entity Relationship notation Integrity constraints Generalization Introduction: Lifecycle Requirement analysis Conceptual Design Logical

More information

SYLLABUS ADMIN DATABASE SYSTEMS I WEEK 2 THE ENTITY-RELATIONSHIP MODEL. Assignment #2 changed. A2Q1 moved to A3Q1

SYLLABUS ADMIN DATABASE SYSTEMS I WEEK 2 THE ENTITY-RELATIONSHIP MODEL. Assignment #2 changed. A2Q1 moved to A3Q1 DATABASE SYSTEMS I WEEK 2 THE ENTITY-RELATIONSHIP MODEL Class Time and Location: Tue 14:30-16:20 AQ3005 Thu 14:30-15:20 AQ3003 Course Website: http://www.cs.sfu.ca/cc/354/rfrank/ Instructor: Richard Frank,

More information

0. Database Systems 1.1 Introduction to DBMS Information is one of the most valuable resources in this information age! How do we effectively and efficiently manage this information? - How does Wal-Mart

More information

Conceptual Data Modeling

Conceptual Data Modeling Conceptual Data odeling A data model is a way to describe the structure of the data. In models that are implemented it includes a set of operations that manipulate the data. A Data odel is a combination

More information

Overview of Database Design Process. Data Modeling Using the Entity- Relationship (ER) Model. Two main activities:

Overview of Database Design Process. Data Modeling Using the Entity- Relationship (ER) Model. Two main activities: 1 / 14 Overview of Database Design Process Example Database Application (COMPANY) ER Model Concepts Entities and Attributes Entity Types, Value Sets, and Key Attributes Relationships and Relationship Types

More information

OVERVIEW OF DATABASE DEVELOPMENT

OVERVIEW OF DATABASE DEVELOPMENT DATABASE SYSTEMS I WEEK 2: THE ENTITY-RELATIONSHIP MODEL OVERVIEW OF DATABASE DEVELOPMENT Requirements Analysis / Ideas High-Level Database Design Conceptual Database Design / Relational Database Schema

More information

Chapter 9: Relational DB Design byer/eer to Relational Mapping Relational Database Design Using ER-to- Relational Mapping Mapping EER Model

Chapter 9: Relational DB Design byer/eer to Relational Mapping Relational Database Design Using ER-to- Relational Mapping Mapping EER Model Chapter 9: Relational DB Design byer/eer to Relational Mapping Relational Database Design Using ER-to- Relational Mapping Mapping EER Model Constructs to Relations Relational Database Design by ER- and

More information

Chapter 2: Entity-Relationship Model

Chapter 2: Entity-Relationship Model Chapter 2: Entity-Relationship Model! Entity Sets! Relationship Sets! Design Issues! Mapping Constraints! Keys! E-R Diagram! Extended E-R Features! Design of an E-R Database Schema! Reduction of an E-R

More information

Advance Database Management System

Advance Database Management System Advance Database Management System Conceptual Design Lecture- A simplified database design process Database Requirements UoD Requirements Collection and Analysis Functional Requirements A simplified database

More information

ENTITY-RELATIONSHIP MODEL. CS 564- Spring 2018

ENTITY-RELATIONSHIP MODEL. CS 564- Spring 2018 ENTITY-RELATIONSHIP MODEL CS 564- Spring 2018 WHAT IS THIS LECTURE ABOUT E/R Model: entity sets, attribute relation: binary, multi-way relationship roles, attributes on relationships subclasses (ISA) weak

More information

Informatics 1: Data & Analysis

Informatics 1: Data & Analysis Informatics 1: Data & Analysis Lecture 3: The Relational Model Ian Stark School of Informatics The University of Edinburgh Tuesday 24 January 2017 Semester 2 Week 2 https://blog.inf.ed.ac.uk/da17 Lecture

More information

Data about data is database Select correct option: True False Partially True None of the Above

Data about data is database Select correct option: True False Partially True None of the Above Within a table, each primary key value. is a minimal super key is always the first field in each table must be numeric must be unique Foreign Key is A field in a table that matches a key field in another

More information

COMP102: Introduction to Databases, 9.1

COMP102: Introduction to Databases, 9.1 COMP102: Introduction to Databases, 9.1 Dr Muhammad Sulaiman Khan Department of Computer Science University of Liverpool U.K. 21/22 February, 2011 Database Analysis and Design Techniques: Entity-Relationship

More information

2004 John Mylopoulos. The Entity-Relationship Model John Mylopoulos. The Entity-Relationship Model John Mylopoulos

2004 John Mylopoulos. The Entity-Relationship Model John Mylopoulos. The Entity-Relationship Model John Mylopoulos XVI. The Entity-Relationship Model The Entity Relationship Model The Entity-Relationship Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of E-R

More information

Database Systems. Overview - important points. Lecture 5. Some introductory information ERD diagrams Normalization Other stuff 08/03/2015

Database Systems. Overview - important points. Lecture 5. Some introductory information ERD diagrams Normalization Other stuff 08/03/2015 Lecture 5 Database Systems Instructor: M.Imran Khalil Imrankhalil3@gmail.com Resource:Imrankhalil3.wordpress.com University of Sargodha Canal Campus Lahore Overview - important points Some introductory

More information

Chapter 6: Entity-Relationship Model

Chapter 6: Entity-Relationship Model Chapter 6: Entity-Relationship Model Database System Concepts, 5th Ed. See www.db-book.com for conditions on re-use Chapter 6: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram

More information

SOFTWARE ENGINEERING Prof.N.L.Sarda Computer Science & Engineering IIT Bombay. Lecture #10 Process Modelling DFD, Function Decomp (Part 2)

SOFTWARE ENGINEERING Prof.N.L.Sarda Computer Science & Engineering IIT Bombay. Lecture #10 Process Modelling DFD, Function Decomp (Part 2) SOFTWARE ENGINEERING Prof.N.L.Sarda Computer Science & Engineering IIT Bombay Lecture #10 Process Modelling DFD, Function Decomp (Part 2) Let us continue with the data modeling topic. So far we have seen

More information

Entity-Relationship Modelling. Entities Attributes Relationships Mapping Cardinality Keys Reduction of an E-R Diagram to Tables

Entity-Relationship Modelling. Entities Attributes Relationships Mapping Cardinality Keys Reduction of an E-R Diagram to Tables Entity-Relationship Modelling Entities Attributes Relationships Mapping Cardinality Keys Reduction of an E-R Diagram to Tables 1 Entity Sets A enterprise can be modeled as a collection of: entities, and

More information

DATA MODELING USING THE ENTITY-RELATIONSHIP MODEL. 1 Powered by POeT Solvers Limited

DATA MODELING USING THE ENTITY-RELATIONSHIP MODEL. 1  Powered by POeT Solvers Limited DATA MODELING USING THE ENTITY-RELATIONSHIP MODEL 1 www.pmtutor.org Powered by POeT Solvers Limited 2 www.pmtutor.org Powered by POeT Solvers Limited Entity-Relationship (ER) Model The ER model is a high-level

More information

System Analysis And Design Methods ENTITY RELATIONSHIP DIAGRAM (ERD) Prof. Ali Khaleghi Eng. Hadi Haedar

System Analysis And Design Methods ENTITY RELATIONSHIP DIAGRAM (ERD) Prof. Ali Khaleghi Eng. Hadi Haedar 1 System Analysis And Design Methods ENTITY RELATIONSHIP DIAGRAM (ERD) Prof. Ali Khaleghi Eng. Hadi Haedar Overview DATABASE ARCHITECTURE 2 External level concerned with the way individual users see the

More information

Niklas Fors The Relational Data Model 1 / 17

Niklas Fors The Relational Data Model 1 / 17 The Relational Data Model From Entity Sets to Relations From Relationships to Relations Combining Relations Weak Entity Sets Relationships With Attributes Subclasses Niklas Fors (niklas.fors@cs.lth.se)

More information

Chapter 6: Entity-Relationship Model

Chapter 6: Entity-Relationship Model Chapter 6: Entity-Relationship Model Database System Concepts, 5th Ed. See www.db-book.com for conditions on re-use Chapter 6: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram

More information

Chapter 7: Entity-Relationship Model

Chapter 7: Entity-Relationship Model Chapter 7: Entity-Relationship Model Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Chapter 7: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram

More information

Chapter 7: Entity-Relationship Model

Chapter 7: Entity-Relationship Model Chapter 7: Entity-Relationship Model Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Chapter 7: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram

More information

CSC 261/461 Database Systems Lecture 8. Spring 2018

CSC 261/461 Database Systems Lecture 8. Spring 2018 CSC 261/461 Database Systems Lecture 8 Spring 2018 Announcement Quiz No New Problem Set Study Chapter 5, 6, and 7 Go through the problem set Announcement Project 2 Part 1 Already out. Workshop covered

More information

Full file at Chapter 2: Foundation Concepts

Full file at   Chapter 2: Foundation Concepts Chapter 2: Foundation Concepts TRUE/FALSE 1. The input source for the conceptual modeling phase is the business rules culled out from the requirements specification supplied by the user community. T PTS:

More information

Chapter 7: Entity-Relationship Model

Chapter 7: Entity-Relationship Model Chapter 7: Entity-Relationship Model Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Chapter 7: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram

More information

Chapter 2: Entity-Relationship Model. Entity Sets. Entity Sets customer and loan. Attributes. Relationship Sets. A database can be modeled as:

Chapter 2: Entity-Relationship Model. Entity Sets. Entity Sets customer and loan. Attributes. Relationship Sets. A database can be modeled as: Chapter 2: Entity-Relationship Model Entity Sets Entity Sets Relationship Sets Design Issues Mapping Constraints Keys E-R Diagram Extended E-R Features Design of an E-R Database Schema Reduction of an

More information

Entity Relationship Diagram (ERD): Basics

Entity Relationship Diagram (ERD): Basics Entity Relationship Diagram (ERD): Basics CIS 3730 Designing and Managing Data J.G. Zheng Fall 2010 Overview: 3 Level Database Design Creating an Entity Relationship Diagram (ERD) and associated data dictionary

More information

CSIT5300: Advanced Database Systems

CSIT5300: Advanced Database Systems CSIT5300: Advanced Database Systems L01: Entity Relationship (ER) Model Dr. Kenneth LEUNG Department of Computer Science and Engineering The Hong Kong University of Science and Technology Hong Kong SAR,

More information

Database Design Using E/R Model

Database Design Using E/R Model CS145 Lecture Notes #2 Database Design Using E/R Model Steps in Building a Database 1. Understand real-world domain being captured 2. Specify it using a database design model 3. Translate specification

More information

The Entity/Relationship (E/R) Model & DB Design. csc343, Introduction to Databases Renée J. Miller and Fatemeh Nargesian and Sina Meraji Winter 2018

The Entity/Relationship (E/R) Model & DB Design. csc343, Introduction to Databases Renée J. Miller and Fatemeh Nargesian and Sina Meraji Winter 2018 The Entity/Relationship (E/R) Model & DB Design csc343, Introduction to Databases Renée J. Miller and Fatemeh Nargesian and Sina Meraji Winter 2018 Overview Using the Entity/Relationship (ER) Model to

More information

COSC 304 Introduction to Database Systems. Entity-Relationship Modeling

COSC 304 Introduction to Database Systems. Entity-Relationship Modeling COSC 304 Introduction to Database Systems Entity-Relationship Modeling Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca Conceptual Database Design Conceptual database design

More information

Conceptual Data Models for Database Design

Conceptual Data Models for Database Design Conceptual Data Models for Database Design Entity Relationship (ER) Model The most popular high-level conceptual data model is the ER model. It is frequently used for the conceptual design of database

More information

2. DatabaseDesign. Master I Software Engineering. Dr. Imed Bouchrika Dept of Mathematics & Computer Science University of Souk-Ahras

2. DatabaseDesign. Master I Software Engineering. Dr. Imed Bouchrika Dept of Mathematics & Computer Science University of Souk-Ahras 2. DatabaseDesign Master I Software Engineering Dr. Imed Bouchrika Dept of Mathematics & Computer Science University of Souk-Ahras imed@imed.ws Imed Bouchrika. Advanced Databases, Uni of Souk-Ahras 2013-2014

More information

A database can be modeled as: + a collection of entities, + a set of relationships among entities.

A database can be modeled as: + a collection of entities, + a set of relationships among entities. The Relational Model Lecture 2 The Entity-Relationship Model and its Translation to the Relational Model Entity-Relationship (ER) Model + Entity Sets + Relationship Sets + Database Design Issues + Mapping

More information

Entity-Relationship Model. Purpose of E/R Model

Entity-Relationship Model. Purpose of E/R Model Entity-Relationship Model Slides adapted from http://infolab.stanford.edu/~ullman/fcdb.html 1 Purpose of E/R Model The E/R model allows us to sketch database schema designs. Includes some constraints,

More information

Database Design Phases. History. Entity-relationship model. ER model basics 9/25/11. Entity-relationship (ER) model. ER model basics II

Database Design Phases. History. Entity-relationship model. ER model basics 9/25/11. Entity-relationship (ER) model. ER model basics II CO 597A: Principles of Database and Information ystems Entity-relationship (ER) model Database Design Phases 1. characterize user needs 2. conceptual design structure of data * Entity-relationship model

More information

EECS 647: Introduction to Database Systems

EECS 647: Introduction to Database Systems EECS 647: Introduction to Database Systems Instructor: Luke Huan Spring 2009 Administrative I have communicated with KU Bookstore inquring about the text book status. Take home background survey is due

More information

Objectives of logical design... Transforming the ERD diagram into relations. Relational database components. Mapping a composite attribute

Objectives of logical design... Transforming the ERD diagram into relations. Relational database components. Mapping a composite attribute Logical database design and the relational model Objectives of logical design... Translate the conceptual design into a logical database design that can be implemented on a chosen DBMS Input: conceptual

More information

Information Systems (Informationssysteme)

Information Systems (Informationssysteme) Information Systems (Informationssysteme) Jens Teubner, TU Dortmund jensteubner@cstu-dortmundde Summer 2018 c Jens Teubner Information Systems Summer 2018 1 Part IV Database Design c Jens Teubner Information

More information

CMSC 424 Database design Lecture 3: Entity-Relationship Model. Book: Chap. 1 and 6. Mihai Pop

CMSC 424 Database design Lecture 3: Entity-Relationship Model. Book: Chap. 1 and 6. Mihai Pop CMSC 424 Database design Lecture 3: Entity-Relationship Model Book: Chap. 1 and 6 Mihai Pop Database Design Steps Entity-relationship Model Typically used for conceptual database design info Conceptual

More information

CS 4604: Introduction to Database Management Systems. B. Aditya Prakash Lecture #5: Entity/Relational Models---Part 1

CS 4604: Introduction to Database Management Systems. B. Aditya Prakash Lecture #5: Entity/Relational Models---Part 1 CS 4604: Introduction to Database Management Systems B. Aditya Prakash Lecture #5: Entity/Relational Models---Part 1 E/R: NOT IN BOOK! IMPORTANT: Follow only lecture slides for this topic! Differences

More information

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

Chapter 3 Data Modeling Using the Entity- Relationship (ER) Model Chapter 3 Data Modeling Using the Entity- Relationship (ER) Model Elmasri/Navathe, Fundamentals of Database Systems, Fourth Edition Chapter 3-3 Chapter Outline Example Database Application (COMPANY) ER

More information

XV. The Entity-Relationship Model

XV. The Entity-Relationship Model XV. The Entity-Relationship Model The Entity-Relationship Model Entities, Relationships and Attributes Cardinalities, Identifiers and Generalization Documentation of E-R Diagrams and Business Rules Acknowledgment:

More information

CS/INFO 330 Entity-Relationship Modeling. Announcements. Goals of This Lecture. Mirek Riedewald

CS/INFO 330 Entity-Relationship Modeling. Announcements. Goals of This Lecture. Mirek Riedewald CS/INFO 330 Entity-Relationship Modeling Mirek Riedewald mirek@cs.cornell.edu Announcements Office hour update (see class homepage) First homework assignment will be available from CMS later today Some

More information

Database Applications (15-415)

Database Applications (15-415) Database Applications (15-415) The Entity Relationship Model Lecture 2, January 15, 2014 Mohammad Hammoud Today Last Session: Course overview and a brief introduction on databases and database systems

More information

LAB 2 Notes. Conceptual Design ER. Logical DB Design (relational) Schema Refinement. Physical DD

LAB 2 Notes. Conceptual Design ER. Logical DB Design (relational) Schema Refinement. Physical DD LAB 2 Notes For students that were not present in the first lab TA Web page updated : http://www.cs.ucr.edu/~cs166/ Mailing list Signup: http://www.cs.ucr.edu/mailman/listinfo/cs166 The general idea of

More information

Credit where Credit is Due. Lecture 4: Fundamentals of Object Technology. Goals for this Lecture. Real-World Objects

Credit where Credit is Due. Lecture 4: Fundamentals of Object Technology. Goals for this Lecture. Real-World Objects Lecture 4: Fundamentals of Object Technology Kenneth M. Anderson Object-Oriented Analysis and Design CSCI 6448 - Spring Semester, 2003 Credit where Credit is Due Some material presented in this lecture

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 4 Entity Relationship (ER) Modeling

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 4 Entity Relationship (ER) Modeling Database Systems: Design, Implementation, and Management Tenth Edition Chapter 4 Entity Relationship (ER) Modeling 4.1 The Entity Relationship Model (ERM) ER model forms the basis of an ER diagram ERD

More information

CSE 530A. ER Model. Washington University Fall 2013

CSE 530A. ER Model. Washington University Fall 2013 CSE 530A ER Model Washington University Fall 2013 Database Design Requirements Analysis Conceptual Database Design Creates an abstract model Logical Database Design Converts abstract model to concrete

More information

Database Management System 6 ER Modeling...

Database Management System 6 ER Modeling... Database Management System 6 School of Computer Engineering, KIIT University 6.1 A key allows us to identify a set of attributes that suffice to distinguish entities from each other A key is a property

More information

Roadmap of This Lecture. Weak Entity Sets Extended E-R Features Reduction to Relation Schemas Database Design UML*

Roadmap of This Lecture. Weak Entity Sets Extended E-R Features Reduction to Relation Schemas Database Design UML* E-R Model (II) 1 Roadmap of This Lecture Weak Entity Sets Extended E-R Features Reduction to Relation Schemas Database Design UML* 2 Weak Entity Sets An entity set that does not have a primary key is referred

More information

Cardinality constraints,n:m notation

Cardinality constraints,n:m notation 2 Conceptual Database Design 2.3 Integrity Constraints 2.3. Constraint types 2.3.2 Cardinality constraints 2.4 Extended ER Modeling 2.4. Inheritance / Generalization 2.4.2 Modeling historical data 2.4.3

More information

II. Data Models. Importance of Data Models. Entity Set (and its attributes) Data Modeling and Data Models. Data Model Basic Building Blocks

II. Data Models. Importance of Data Models. Entity Set (and its attributes) Data Modeling and Data Models. Data Model Basic Building Blocks Data Modeling and Data Models II. Data Models Model: Abstraction of a real-world object or event Data modeling: Iterative and progressive process of creating a specific data model for a specific problem

More information

The Entity Relationship Model

The Entity Relationship Model The Entity Relationship Model CPS352: Database Systems Simon Miner Gordon College Last Revised: 2/4/15 Agenda Check-in Introduction to Course Database Environment (db2) SQL Group Exercises The Entity Relationship

More information

DATABASE SCHEMA DESIGN ENTITY-RELATIONSHIP MODEL. CS121: Relational Databases Fall 2017 Lecture 14

DATABASE SCHEMA DESIGN ENTITY-RELATIONSHIP MODEL. CS121: Relational Databases Fall 2017 Lecture 14 DATABASE SCHEMA DESIGN ENTITY-RELATIONSHIP MODEL CS121: Relational Databases Fall 2017 Lecture 14 Designing Database Applications 2 Database applications are large and complex A few of the many design

More information

Database Design with Entity Relationship Model

Database Design with Entity Relationship Model Database Design with Entity Relationship Model Vijay Kumar SICE, Computer Networking University of Missouri-Kansas City Kansas City, MO kumarv@umkc.edu Database Design Process Database design process integrates

More information

CS 405G: Introduction to Database Systems

CS 405G: Introduction to Database Systems CS 405G: Introduction to Database Systems Entity Relationship Model Jinze Liu 9/11/2014 1 CS685 : Special The UNIVERSITY Topics in Data of Mining, KENTUCKY UKY Review A database is a large collection of

More information

Represent entities and relations with diagrams

Represent entities and relations with diagrams LEARNING OBJECTIVES Define data modeling terms Describe E-R Model Identify entities and relations Represent entities and relations with diagrams WHAT IS DATA MODELING? A data model is a collection of concepts

More information

Database Applications (15-415)

Database Applications (15-415) Database Applications (15-415) The Entity Relationship Model Lecture 2, January 12, 2016 Mohammad Hammoud Today Last Session: Course overview and a brief introduction on databases and database systems

More information