DirtBike Order Database– ER Diagram Prepared by Dustin Withee Fall 2012.

Slides:



Advertisements
Similar presentations
Banking Business Scenario
Advertisements

ER Model For a college DB
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module C Designing Databases and Entity-Relationship.
Extended Learning Module C
© McGraw-Hill Companies, Inc., McGraw-Hill/Irwin Extended Learning Module C Designing Databases and Entity-Relationship Diagramming.
DirtBike Order Database– ER Diagram Prepared by Shaylee Thar Fall 2012.
Concepts of Database Management Seventh Edition Chapter 6 Database Design : ERD Model.
IT420: Database Management and Organization
Chapter 5 Understanding Entity Relationship Diagrams.
Extended Learning Module C Designing Databases and Entity-Relationship Diagramming McGraw-Hill/Irwin Copyright © 2010 by the McGraw-Hill Companies, Inc.
Chapter 4 Entity Relationship (ER) Modeling
Database – Part 2a Dr. V.T. Raja Oregon State University.
ER Diagram Notation. E-R Diagram: Chen Model Entity – represented by a rectangle with its name in capital letters. Relationships – represented by an active.
Chapter 5 Database Processing.
ระบบฐานข้อมูลขั้นสูง (Advanced Database Systems) Lecturer AJ. Suwan Janin Phone:
4 1 Chapter 4 Entity Relationship (ER) Modeling Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module C Designing Databases and Entity-Relationship.
Principles of Database Design, Part II AIMS 2710 R. Nakatsu.
Copyright (c) 2014 Pearson Education, Inc. Introduction to Databases.
Chapter 2 Understanding Organizational Style and Its Impact on Information Systems Systems Analysis and Design Kendall & Kendall Sixth Edition.
Q1: What is DBMS and explain its architecture. Q2: Explain Data Independence in detail. Q3: What is database user and explain the types of database user.
Database Design 1: Introduction and Terminology CS 320.
Next Back A-1 Management Information Systems for the Information Age Second Canadian Edition Copyright 2004 The McGraw-Hill Companies, Inc. All rights.
C-1 Management Information Systems for the Information Age Copyright 2004 The McGraw-Hill Companies, Inc. All rights reserved Extended Learning Module.
DirtBike Order Database– ER Diagram Prepared by (Your Name) Summer 2013.
Prepared by Trevor Scherlin Fall 2012 DIRTBIKE ORDER DATABASE– ER DIAGRAM.
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.
Prepared by Katie Girmus Fall Step 1: Define Entity Classes and Primary Keys Step 2: Define Relationships Among Entity Classes Step 3: Define Fields.
Database Design – Lecture 4 Conceptual Data Modeling.
Order Database – ER Diagram Prepared by Megan Foster Fall Semester 2014.
1 6 Concepts of Database Management, 5 th Edition, Pratt & Adamski Chapter 6 Database Design 2: Design Methodology Spring 2006.
1 DATABASE TECHNOLOGIES (Part 2) BUS Abdou Illia, Fall 2015 (September 9, 2015)
DirtBike Order Database– ER Diagram Prepared by (Rahul Dhami) Fall 2012.
DirtBike Order Database– ER Diagram Prepared by Dyan Strausheim Fall 2012.
EntityRelationshipDiagrams. Entity Relationship Models The E-R (entity-relationship) data model views the real world as a set of basic objects (entities)
IST 220 – Intro to Databases Database Design I. DB Design – Sports League The league needs to keep track of Teams Players Coaches Sponsors How many tables.
Order Database – ER Diagram Prepared by Bryan Borcher Spring 2014.
Tutorial on E-R Diagrams 1.Learn basic terminology and symbols –See next four slides; refer to as needed in steps 2-4 below 2.Learn the basics of E-R diagramming.
Chapter 5 Understanding Entity Relationship Diagrams.
Database Design, Application Development, and Administration, 6 th Edition Copyright © 2015 by Michael V. Mannino. All rights reserved. Chapter 5 Understanding.
ENTITY – RELATIONSHIP MODEL Melissa Ann D. Callejo Chairmane Abanilla.
Order Database – ER Diagram Prepared by Evan Hollister Spring 2016.
DirtBike Order Database– ER Diagram Prepared by William Sircin Fall 2012.
©2005 The McGraw-Hill Companies, All rights reserved McGraw-Hill/Irwin
Order Database – ER Diagram
Entity Relationship Diagrams - 1
Information Systems in Organizations 2. 1
Order Database – ER Diagram
Information Systems in Organizations 2. 1
Order Database – ER Diagram
Order Database – ER Diagram
CSCI-100 Introduction to Computing
Information Systems in Organizations 2. 1
Order Database – ER Diagram
Information Systems in Organizations 2. 1
Information Systems in Organizations 2. 1
Information Systems in Organizations 2. 1
Information Systems in Organizations 2. 1
Entity-Relationship Modeling "Extended"
Information Systems in Organizations 2. 1
Information Systems in Organizations 2. 1
Order Database – ER Diagram
Database Systems Instructor Name: Lecture-9.
Order Database – ER Diagram
Information Systems in Organizations 2. 1
Information Systems in Organizations 2. 1
Information Systems in Organizations 2. 1
Entity-Relationship Modeling "Extended"
Entity-Relationship Modeling "Extended"
Presentation transcript:

DirtBike Order Database– ER Diagram Prepared by Dustin Withee Fall 2012

Step 1: Define Entity Classes and Primary Keys Step 2: Define Relationships Among Entity Classes Step 3: Define Fields for each Relationship Step 4: Create Database Designing Databases with Entity Relationship Diagrams

Entity ClassPrimary Key CustomerCustomerID OrderOrderID ProductProductID DistributorDistID Step 1: Define Entity Classes and Primary Keys Business Rules Each customer can have one order Each customer can have multiple orders Customers can be in your database and not have any orders Each order is made by a single customer Orders may have multiple products Each product has to have a distributor Orders cannot be blank but have at least one product Products can be listed in your database but not purchased The same product can be purchased through many orders A distributor can supply multiple products A distributor has to supply at least one product

E-R Diagrams Use 5 symbols 1.Rectangle – entity class 2.Dotted line – relationship 3.| - single relationship 4.0 – zero/optional relationship 5.Crow’s foot (  ) – multiple relationship

PRODUCT CUSTOMER ORDER Step 2: Define Relationships Among Entity Classes DISTRIBUTOR Detailed Orders

Step 3: Define Fields for each Relationship CustomerIdLastNameFirstNameAddressCityStateZipPhone Customer OrderIdCustomerID Order OrderIdProductIDQuantity Detailed Orders DistributorIdDistributor ProductIdProductNameManufacturerColorMSRPIgnitionWeightQOHDistID Product

Step 4: Create Database (At this point we will begin working with our DBMS system, which will be Microsoft Access)