Order Database – ER Diagram Prepared by Megan Foster Fall Semester 2014.

Slides:



Advertisements
Similar presentations
Banking Business Scenario
Advertisements

1 Assignment 4 Map entities with relationships to relational schemas. Use DBDL to describe the table schemas.
DirtBike Order Database– ER Diagram Prepared by Shaylee Thar Fall 2012.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 6 Advanced Data Modeling.
MIS 210 Fall 2004Sylnovie Merchant, Ph. D. Lecture 4: Data Modeling Process Modeling MIS 210 Information Systems I.
Database Design Conceptual –identify important entities and relationships –determine attribute domains and candidate keys –draw the E-R diagram Logical.
© 2008 Pearson Prentice Hall, Experiencing MIS, David Kroenke
SLIDE 1IS Fall 2002 Database Management: Discussion Session University of California, Berkeley School of Information Management and.
Database Design Chapter 2. Goal of all Information Systems  To add value –Reduce costs –Increase sales or revenue –Provide a competitive advantage.
Database – Part 2a Dr. V.T. Raja Oregon State University.
WJEC Applied ICT Databases – Attributes & Entities Entities A database contains one or more related tables. Each table holds all of the information.
Entity Relationship Model Chapter 6. Basic Elements of E-R Model Entity Object of the real world that stores data. Eg. Customer, State, Project, Supplier,
1 Relational model concepts Key constraints Referential integrity constraint Steen Jensen, autumn 2013.
Chapter 5 Database Processing.
6-1 DATABASE FUNDAMENTALS Information is everywhere in an organization Information is stored in databases –Database – maintains information about various.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
Storing Organizational Information - Databases
Database Design 1: Introduction and Terminology CS 320.
© Pearson Education Limited, Chapter 7 Entity-Relationship modeling Transparencies.
CIS 210 Systems Analysis and Development Week 6 Part II Designing Databases,
C-1 Management Information Systems for the Information Age Copyright 2004 The McGraw-Hill Companies, Inc. All rights reserved Extended Learning Module.
System Design System Design - Mr. Ahmad Al-Ghoul System Analysis and Design.
DirtBike Order Database– ER Diagram Prepared by (Your Name) Summer 2013.
Chapter 9: Logical Database Design and the Relational Model (ERD Mapping)
Prepared by Trevor Scherlin Fall 2012 DIRTBIKE ORDER DATABASE– ER DIAGRAM.
Forms and Subforms 5.02 Understand database queries, forms, and reports used in business.
An Entity Relationship (ER) Diagram is a graphic that shows the interrelationship between entities in a database.
Btec National - Advanced Databases 1 Advanced Databases Entity Relationship Diagrams.
 An entity-relationship diagram (ERD) is a specialized graphic that illustrates the interrelationships 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.
Jozef Kuper.  Describe a Database  Entities  Atributes  Relationships.
ENTITY RELATIONSHIP DIAGRAM ENTITY RELATIONSHIP DIAGRAM IS A SPECIALIZED GRAPHIC THAT ILLUSTRATES THE INTERRELATIONSHIPS BETWEEN ENTITIES IN A DATABASE.
Relational Theory and Design
McGraw-Hill/Irwin ©2009 The McGraw-Hill Companies, All Rights Reserved CHAPTER 6 DATABASES AND DATA WAREHOUSES CHAPTER 6 DATABASES AND DATA WAREHOUSES.
 Taber Shimono Lilyana Gross Andrea Nelson Chelsea Ball Eric Svendsen Shefflette.
Foundations of Business Intelligence: Databases and Information Management.
Introduction to Database System. 1. Define Database, Database Management System and Database System. Explain the components of DBMS with its advantages.
1 DATABASE TECHNOLOGIES (Part 2) BUS Abdou Illia, Fall 2015 (September 9, 2015)
Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin APPENDIX C DESIGNING DATABASES APPENDIX C DESIGNING DATABASES.
1 ER Modeling BUAD/American University Mapping ER modeling to Relationships.
DirtBike Order Database– ER Diagram Prepared by (Rahul Dhami) Fall 2012.
1. Explain the DBMS with its Components and Describe the various functions of DBMS? 2. Define the term DBA. Explain the various Roles of Database Administrator?
DirtBike Order Database– ER Diagram Prepared by Dustin Withee Fall 2012.
* Database is a group of related objects * Objects can be Tables, Forms, Queries or Reports * All data reside in Tables * A Row in a Table is a record.
DirtBike Order Database– ER Diagram Prepared by Dyan Strausheim Fall 2012.
Btec National - IT SYSTEMS ANALYSIS AND DESIGN 1 IT Systems Analysis and Design Entity Relationship Diagrams.
Howard Paul. Sequential Access Index Files and Data File Random Access.
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.
Order Database – ER Diagram Prepared by Bryan Borcher Spring 2014.
Test SEITA.
Conversion from ER diagram to relational model 1 ER is a visual model The relational model is a matemathical model.
Data Modeling AND ER MODELS.
ENTITY RELATIONSHIP DIAGRAM. Objectives Define terms related to entity relationship modeling, including entity, entity instances, attribute, relationship.
Lecture 5 Data Model Design Jeffery S. Horsburgh Hydroinformatics Fall 2012 This work was funded by National Science Foundation Grant EPS
IT 5433 LM3 Relational Data Model. Learning Objectives: List the 5 properties of relations List the properties of a candidate key, primary key and foreign.
Order Database – ER Diagram Prepared by Evan Hollister Spring 2016.
DirtBike Order Database– ER Diagram Prepared by William Sircin Fall 2012.
Data Model Basic Building Blocks
Order Database – ER Diagram
Database Constraints Ashima Wadhwa.
Order Database – ER Diagram
Order Database – ER Diagram
Order Database – ER Diagram
CSCI-100 Introduction to Computing
Order Database – ER Diagram
Poor Naming Standards.
5.02 Understand database queries, forms, and reports used in business.
Order Database – ER Diagram
Order Database – ER Diagram
Presentation transcript:

Order Database – ER Diagram Prepared by Megan Foster Fall Semester 2014

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

Entity ClassPrimary Key CUSTOMERCustomer ID ORDEROrder ID PRODUCTProduct ID ORDERITEMOrderID and ProductID Step 1: Define Entity Classes and Primary Keys Business Rules 1. A customer can have unlimited orders. 2. A customer can have one order or have no order. 3. An order can only have one customer. 4. An order must have a product. 5. Orders must have one product 6. Many orders can have the same product. 7. A product can have multiple orders. 8. A product my have no orders.

Step 2: Define Relationships Among Entity Classes CUSTOMER PRODUCT ORDER ORDERITEM

Step 3: Define Attributes for each Table Customer IDCustomerNamePhoneNumberCustomer CUSTOMER OrderIDCustomerNameOrderDate ORDER OrderIDProductID ORDERITEM ProductIDProductName PRODUCT

Step 3: Define Attributes for each Table CustomerIDFirstNameLastName AddressMajor LocationGender CUSTOMER OrderIDCustomerIDOrderDate ORDER OrderIDProductIDQuantity ORDERITEM ProductIDProductNamePriceBatchSizeDescription Type PRODUCT

List and Describe the Four Characteristics of a Relational Database. 1.Collection of Data 2.Logical Structure 3.Logical Ties (Foreign Key and Primary Key) 4.Integrity Constraints (Rules)

Step 4: Create Database