The Computer Super Store A Sample Presentation Depicting the Requirements of Your Group Project.

Slides:



Advertisements
Similar presentations
Database Management Using Microsoft Access Xinhua Chen, Ph.D. Chinese Association of Professionals in Science and Technology March 23, 2003.
Advertisements

Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
Chapter 3 Data Modeling Copyright © 2014 McGraw-Hill Education. All rights reserved. No reproduction or distribution without the prior written consent.
Start First step Create a new blank database Create a database using the option that will enable you to build your database using pre-set options. Save.
Copyright © 2015 Pearson Education, Inc. Database Design Chapters 17 and
Create a new blank database First step SUBMITTry again.
Exploring Microsoft Access 2003 Chapter 6 Many-to-Many Relationships: A More Complex System.
Exploring Microsoft Access 2003 Chapter 1 Introduction to Microsoft Access: What Is A Database?
Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
SUNY Morrisville-Norwich Campus-Week 10 CITA 130 Advanced Computer Applications II Spring 2005 Prof. Tom Smith.
Database Design Chapter 2. Goal of all Information Systems  To add value –Reduce costs –Increase sales or revenue –Provide a competitive advantage.
1 Computing for Todays Lecture 16 Yumei Huo Fall 2006.
Data fundamentals file processing fundamentals entity-relationship diagrams the cornucopia case portfolio project Systems Analysis and Design for the Small.
Computer Science & Engineering 2111 Introduction to Database Management Systems Relationships and Database Creation 1 CSE 2111 Introduction to Database.
Database Relationships Objective 5.01 Understand database tables used in business.
Define Table Relationships—1 of 3 One of the most powerful features of a relational database management system, such as Access, is its ability to define.
Chapter 5 UNDERSTANDING AND DESIGNING ACCOUNTING DATA.
Database Relationships Objective 5.01 Understand database tables used in business.
Relational Database Concepts. Let’s start with a simple example of a database application Assume that you want to keep track of your clients’ names, addresses,
1 Lesson 22 Getting Started with Access Essentials Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
©Ian Sommerville 2004Software Engineering, 7th edition. Chapter 6 Slide 1 Software Requirements.
1 Chapter 1 Overview of Database Concepts. 2 Chapter Objectives Identify the purpose of a database management system (DBMS) Distinguish a field from a.
CIS 103 — Applied Computer Technology Last Edited: September 17, 2010 by C.Herbert Using Database Management Systems.
Information Systems: Databases Define the role of general information systems Describe the elements of a database management system (DBMS) Describe the.
Microsoft Access 2003 Define some key Access terminology: Field – A single characteristic or attribute of a person, place, object, event, or idea. Record.
MIS 301 Information Systems in Organizations Dave Salisbury ( )
RELATIONSHIPS Generally there are two main database types: flat-file and relational.
MIS 301 Information Systems in Organizations Dave Salisbury ( )
Database Processing: Fundamentals, Design and Implementation, 9/e by David M. KroenkeChapter 3/1 Copyright © 2004 Please……. No Food Or Drink in the class.
Lesson 17 Getting Started with Access Essentials
Exploring Microsoft Access 97 Chapter 1 Introduction to Microsoft Access: What Is A Database? Office graphic copyright by Microsoft Corp.
Relational Databases (MS Access)
The National Bank Database A Sample Presentation Depicting the Requirements of Your Group Project.
1 Relational Databases and SQL. Learning Objectives Understand techniques to model complex accounting phenomena in an E-R diagram Develop E-R diagrams.
Microsoft Access Intro Class 6 Relationships.
DATABASE SYSTEMS. DATABASE u A filing system for holding data u Contains a set of similar files –Each file contains similar records Each record contains.
Database collection of related information stored in an organized form Database program software tool for storage & retrieval of that information.
Exploring Microsoft Access Chapter 6 Many-to-Many Relationships: A More Complex System.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
What have we learned?. What is a database? An organized collection of related data.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. Adding a new field 1Right click the table name and select design view 2Type the field information at the end.
IBS 520 Introduction to Internet Technology Database Fundamentals Week 4.
Database revision.
ICOM 5016 – Introduction to Database Systems Lecture 5 Dr. Manuel Rodriguez Department of Electrical and Computer Engineering University of Puerto Rico,
Any Sports League A Sample Presentation Depicting the Requirements of Your Group Project.
Lesson 2: Designing a Database and Creating Tables.
Exploring Office Grauer and Barber 1 One-to-Many Relationships: Subforms and Multiple-Table Queries(Wk7)
Pasewark & Pasewark Microsoft Office 2003: Introductory 1 INTRODUCTORY MICROSOFT ACCESS Lesson 4 – Finding and Ordering Data.
Lesson 13 Databases Unit 2—Using the Computer. Computer Concepts BASICS - 22 Objectives Define the purpose and function of database software. Identify.
Access Lessons 1, 2 and 3 ©2009 M and K Solutions, LLC – All Rights Reserved.
Lesson 29: Building a Database. Learning Objectives After studying this lesson, you will be able to:  Identify key database design techniques  Open.
Instructor: Pavlos Pavlikas1 How Data is Stored Chapter 8.
Ennis-Cole, AC 2.01, CECS Maintaining A Database By: Dr. Ennis-Cole.
Exploring Microsoft Access Chapter 5 One-to-Many Relationships: Subforms and Multiple Table Queries.
Database Relationships Objective 5.01 Understand database tables used in business.
INFORMATION TECHNOLOGY DATABASE MANAGEMENT. A database is a collection of information organized to provide efficient retrieval. The collected information.
Database (Microsoft Access). Database A database is an organized collection of related data about a specific topic or purpose. Examples of databases include:
Database Relationships
Databases: What they are and how they work
Order Database – ER Diagram
Order Database – ER Diagram
Database Relationships
Order Database – ER Diagram
Databases and Information Management
Microsoft Access 2010 Lesson 2 Access Lesson 2 Lesson Plans
What is a Database? A collection of data organized in a manner that allows access, retrieval, and use of that data.
Databases and Information Management
Database Relationships
Copyright © Texas Education Agency, All rights reserved.
Microsoft Access 2010 Lesson 2 Access Lesson 2 Lesson Plans
Presentation transcript:

The Computer Super Store A Sample Presentation Depicting the Requirements of Your Group Project

A (maximum) 10 minute presentation to the class. Class time, however, may limit the presentations to three groups (drawn by lot). Describe the physical problem and database design (the tables and relationships) that will be used to implement the system. Illustrate the type of information to be obtained from the system and the means of obtaining that information. The Assignment

Describe the System and Its Relationships Our system is intended to track the orders, customers, and products in a Computer store. There is a: – One-to-many relationship between customers and orders; one customer can have many orders, but a specific order is associated with one customer. – Many-to-many-relationship between orders and products; this requires the creation of another table that contains the primary key of both the Orders and Products tables

The Design Combination of OrderID and ProductID is unique

Information from the Database Query: What orders were placed by John Smith? Solution: Search the Customers table to determine John’s CustomerID, then go to the Orders table to find all loans for that CustomerID

Information from the Database Query: Which products appeared in order 1? Solution: Search the Order Details table for all records for Order 1; take the ProductID of those records to the Products table to learn product names.

Information from the Database Query: What is the customer’s phone number for Order 6? Solution: Search the Orders table for Order 6, then take the CustomerID to the Customers table to obtain the phone number.

A Contract Between You and Your Professor Your presentation becomes a contract between you and your professor with respect to the database design. Additional requirements will be specified later. The completed system must be able to add, edit, or delete any object through a form The completed system must be capable of creating your sample queries which in turn reflect any changes to the data

Delivering the Presentation Use PowerPoint to make the presentation as polished as possible. All members of the group are to be in front of the room during the presentation. Maintain eye contact, speak in sufficient volume, etc. Handouts of the printed relationships diagram are required for the class