Moya messam.  Definition: An entity-relationship (ER) diagram is a specialized graphic that illustrates the interrelationships between entities in a.

Slides:



Advertisements
Similar presentations
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module C Designing Databases and Entity-Relationship.
Advertisements

Extended Learning Module C
© McGraw-Hill Companies, Inc., McGraw-Hill/Irwin Extended Learning Module C Designing Databases and Entity-Relationship Diagramming.
ENTITY RELATIONSHIP MODELLING
Concepts of Database Management Sixth Edition
Entity-Relation Modeling Hun Myoung Park, Ph.D., Public Management and Policy Analysis Program Graduate School of International Relations International.
Relational Model Stores data as tables –Each column contains values about the same attribute –Each column has a distinct name –Each row contains values.
Copyright © 2004 Pearson Education, Inc.. Chapter 3 Data Modeling Using the Entity-Relationship Model.
WELL-DESIGNED DATABASES Process faster Easy to develop and maintain Easy to read and write code.
Enhanced ER modeling techniques Transparencies
Entity/Relationship Modelling
ER Diagram Notation. E-R Diagram: Chen Model Entity – represented by a rectangle with its name in capital letters. Relationships – represented by an active.
 An entity-relationship (ER) diagram is a specialized graphic that illustrates the interrelationships between entities in a database.  An Entity Relationship.
Entity Relationship Modelling. What is Entity Relationship Modelling? The Entity-Relationship model is – ” “ a data model for high-level descriptions.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module C Designing Databases and Entity-Relationship.
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
ER Diagrams, Data Structure Diagrams and Relationship Types using the Footy Tips Database.
Entity-Relationship Data Model N. Harika Lecturer(csc)
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
PLUG IT IN 3 Fundamentals of Relational Database Operations.
Database Design Using Entity-Relationship Models Transformation of Entity-Relationship Models into Relational Database Design Trees, Networks, and Bills.
Data Modeling IST210 Class Lecture.
Technology Guide 3 Data & Database. Agenda Definition File processing problems Database Selection criteria.
Entity-Relationship (E-R) Diagrams
Entity Relationship Diagram. Introduction Definition: Entity-relationship diagram is a data-modeling technique that visualises entities, the attributes.
An Entity Relationship (ER) Diagram is a graphic that shows the interrelationship between entities in a database.
Normalization Exercise. First Normal Form Second Normal Form.
SE305 Database System Technology 23/10/2014 Quiz-2.
Description and exemplification of entity-relationship modelling.
 An entity-relationship diagram (ERD) is a specialized graphic that illustrates the interrelationships between entities in a database.
 What is an Entity-Relationship Diagram? An entity-relationship diagram (ERD) is a snapshot of data structures. ERDs show entities in a database and.
Chapter 3 Dr. Bernard Chen Ph.D. University of Central Arkansas Fall 2008.
ENTITY RELATIONSHIP DIAGRAM ENTITY RELATIONSHIP DIAGRAM IS A SPECIALIZED GRAPHIC THAT ILLUSTRATES THE INTERRELATIONSHIPS BETWEEN ENTITIES IN A DATABASE.
Relational Theory and Design
Databases Illuminated Chapter 3 The Entity Relationship Model.
1 The Entity- Relationship Model Instructor: Mohamed Eltabakh
Copyright © Curt Hill Entities and Relationships The basics and what they have to do with database.
Lecture 03 Entity-Relationship Diagram. Chapter Outline.
Entity/Relationship Modelling. Entity Relationship Modelling In This Lecture Entity/Relationship models Entities and Attributes Relationships Attributes.
Entity-Relationship Diagram Presentation Gianna-lee Williams 6AQ Ms. Anderson.
Entity relationship diagram Name: Quian Crosby Form:6AQ Subject: Information Technology Teacher: Ms. D. Anderson.
Done By : Gillian Swaby. Objectives: 1. What is an Entity-Relationship Diagram? 2.What are the symbols used in ERD? Explain each. 3. What is a one- to-
What is an Entity Relationship Diagram?. An Entity Relationship Diagram is a graphic that is speacialized to illustrate or give examples of the inter.
CS34311 The Entity- Relationship Model Part I.. CS34312 Database Design Stages Application Requirements Conceptual Design Logical Design Physical Design.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
Logical Database Design Transparencies 1. ©Pearson Education 2009 Objectives How to create a set of tables from an ER model. How to check that the tables.
1 Information System Analysis Topic-3. 2 Entity Relationship Diagram \ Definition An entity-relationship (ER) diagram is a specialized graphic that illustrates.
Order Database – ER Diagram Prepared by Bryan Borcher Spring 2014.
Microsoft Access 2010 Chapter 11 Database Design.
E.R Diagrams Tiffany Shaw 6AQ
Test SEITA.
Conversion from ER diagram to relational model 1 ER is a visual model The relational model is a matemathical model.
Teanna Clarke 6aQ What is a Entity-Relationship Diagram?  An Entity-Relationship Diagram (ERD) is a tool that graphically shows the connections among.
5 1 Normalization of Database Tables. 5 2 Database Tables and Normalization Normalization –Process for evaluating and correcting table structures to minimize.
Microsoft Access CS 110 Fall Entity Relationship Model Entities Entities Principal data object about which information is to be collectedPrincipal.
Database -Entity-Relationship Model 2012/03/05.
IT 5433 LM2 ER & EER Model. Learning Objectives: Explain importance of data modeling Define and use the entity-relationship model Define E/R terms Describe.
 DEFINE THE ENTITY  IDENTIFY THE ENTITY TYPES AND SETS OF ENTITY  EXPLAIN THE ATTRIBUTE AND A VALUE SET  EXPLAIN E-R MODEL EXPLAIN THE FOLLOWING RELATIONSHIP.
ENTITY – RELATIONSHIP MODEL Melissa Ann D. Callejo Chairmane Abanilla.
Entity/Relationship Modelling
Enhanced ER Modeling Transparencies
Chapter 12 Information Systems.
CSCI-100 Introduction to Computing
The Entity-Relationship Model
Order Database – ER Diagram
Databases and Information Management
Lesson Objectives Aims You should know about: 1.3.2:
Day 2 - Basic Database Backbone
Databases and Information Management
Database Dr. Roueida Mohammed.
Presentation transcript:

Moya messam

 Definition: An entity-relationship (ER) diagram is a specialized graphic that illustrates the interrelationships between entities in a database.

 ER diagrams often use symbols to represent three different types of information. Boxes are commonly used to represent entities. Diamonds are normally used to represent relationships and ovals are used to represent attributes. 

 a one to one relationship is where each record in a table(A) can have only one matching record in table(B). This type of relationship is not common, because most information related in this way would be in one table.  Example:

 A one to many relationship is the most common type of relationship. This is where a record in a table (A) can have many matching records in table(b).  For example one suppler can supply more than one product to a company, but each product has only one supplier.

 A many to many relationship is where a record in table (A) can have many matching records in table (B), and record in table (B) can have many matching records in table (A).