Any Sports League 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?
Data Modeling. What are you keeping track of? You begin to develop a database by deciding what you are going to keep track of. Each thing that you are.
The Re-Start Meeting Warren County School Strategic Planning Process Action Team Leaders September 25, 2013.
Query Methods (SQL). What is SQL A programming language for databases. SQL (structured Query Language) It allows you add, edit, delete and run queries.
The Writing Process Communication Arts.
The Writing Process.
Copyright © 2015 Pearson Education, Inc. Database Design Chapters 17 and
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.
Do: Home Page Form-1 Form-2 Form-3 as described in following slides. Document in Word as usual. Three-tier Architecture Assignments This is a possible.
SUNY Morrisville-Norwich Campus-Week 10 CITA 130 Advanced Computer Applications II Spring 2005 Prof. Tom Smith.
Spreadsheets and Databases Class 8 LBSC 690 Information Technology.
The Computer Super Store A Sample Presentation Depicting the Requirements of Your Group Project.
1 Computing for Todays Lecture 16 Yumei Huo Fall 2006.
Case study Lisa’s Bookstore IST210.
Overview E2E Soccer have released a mobile app for the Apple iPhone for coaches and players who use E2E Soccer’s League Centre product. The mobile app.
Data Modeling and Entity- Relationship Model I IST2101.
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.
INFO415 An overview of systems development
Web Application Development. Define ER model in QSEE Generate SQL Create Database mySQL Write Script to use TableEditor class Process to create A simple.
Populations and Samples Chosing Appropriate Graphs to Represent Data.
Chapter 1 Overview of Database Concepts Oracle 10g: SQL
Computer-aided Maintenance “Moj vzdrževalec” Database.
1 Chapter 1 Overview of Database Concepts. 2 Chapter Objectives Identify the purpose of a database management system (DBMS) Distinguish a field from a.
Lecture 2 An Overview of Relational Database IST 318 – DB Admin.
Database Processing: Fundamentals, Design and Implementation, 9/e by David M. KroenkeChapter 3/1 Copyright © 2004 Please……. No Food Or Drink in the class.
Object-Oriented Analysis and Design An Introduction.
® Microsoft Office 2010 Access Tutorial 2 Building a Database and Defining Table Relationships.
Exploring Microsoft Access 97 Chapter 1 Introduction to Microsoft Access: What Is A Database? Office graphic copyright by Microsoft Corp.
XP New Perspectives on Microsoft Office Access 2003 Tutorial 9 1 Microsoft Office Access 2003 Tutorial 9 – Using Action Queries, and Defining Table Relationships.
FIRST COURSE Access Tutorial 4 Creating Forms and Reports.
The National Bank Database A Sample Presentation Depicting the Requirements of Your Group Project.
MGS 351 Introduction to Management Information Systems RECITATION 8.
Chapter 1Introduction to Oracle9i: SQL1 Chapter 1 Overview of Database Concepts.
Chapter 4 Entity Relationship (ER) Modeling.  ER model forms the basis of an ER diagram  ERD represents conceptual database as viewed by end user 
Access Project 3 Notes. Introduction Maintaining the Database  Modifying the data to keep it up-to-date Restructure the Database  To change the database.
Microsoft Access Intro Class 6 Relationships.
General, Organic, and Biological Chemistry Fourth Edition Karen Timberlake 1.2 A Study Plan for Learning Chemistry Chapter 1 Chemistry and Measurements.
E-R model for Exercise #1 Comments: 1. There is a lot of process, or data flow information in this description that will not be modeled in the E-R diagram,
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.
Micah Wheeler. Overview and Requirements Design and implement an alumni tracking system for the computer science discipline. Requirements Perspective.
Description and exemplification of entity-relationship modelling.
ENTITY RELATIONSHIP DIAGRAM ENTITY RELATIONSHIP DIAGRAM IS A SPECIALIZED GRAPHIC THAT ILLUSTRATES THE INTERRELATIONSHIPS BETWEEN ENTITIES IN A DATABASE.
Lesson 2: Designing a Database and Creating Tables.
BSA206 Database Management Systems Lecture 2: Introduction to Oracle / Overview of Database Concepts.
Pasewark & Pasewark Microsoft Office 2003: Introductory 1 INTRODUCTORY MICROSOFT OUTLOOK Lesson 3 – Working with Other Outlook Tools.
Lesson 29: Building a Database. Learning Objectives After studying this lesson, you will be able to:  Identify key database design techniques  Open.
Systems Analysis and Design in a Changing World, 6th Edition 1 Chapter 1 INTRODUCTION TO SYSTEMS ANALYSIS AND DESIGN: AN AGILE, ITERATIVE APPROACH From.
Chapter 1 Introduction to Database. Database Concept Field: a basic data element or attribute of an object Record: a set of fields Table: a set of records.
There’s Nothing Like Baseball
Chapter 4 Relational Database, Pivot Charts, and Switchboard.
Tables 1 to 8 FM Run around!.
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.
第 8 章 PowerPoint 2003 的使用 1 PowerPoint 2003 窗口简介 2 PowerPoint 2003 演示文稿的创建与放映 3 幻灯片的基本操作.
XP New Perspectives on Microsoft Office Access 2003 Tutorial 4 1 Microsoft Office Access 2003 Tutorial 4 – Creating Forms and Reports.
Database Design Chapters 17 and 18.
Database Relationships
Database Relationships
Accounting Information Systems 9th Edition
Databases and Information Management
M. Sc. Juan Carlos Olivares Rojas
Mixtures and Solutions
Instruction Assignment #1 (due May 16, 2018)
Databases and Information Management
Database Relationships
Presentation transcript:

Any Sports League 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 teams, players, and coaches in an intramural sports (soccer) league. There is a: – One-to-many relationship between teams and players; one team can have many players, but a specific player is associated with one team. – One-to-many-relationship between teams and coaches; one team can have many coaches, but a specific coach is associated with one team.

The Design TeamID is a foreign key in both the Players table and the Coaches table

Information from the Database Query: Which players are on the Comets? Solution: Search the Teams table for the Comets, then take the TeamID to the Players table to list all players with that TeamID.

Information from the Database Query: What color uniform does Jodi McPherson need for Saturday? Solution: Search the Players table to determine Jodi’s TeamID, then go to the Teams table to find the team colors

Information from the Database Query: What is the phone number of Natalie Anderson’s coach? Solution: Search the Players table for Natalie, get her TeamID, then search the Coaches table to locate the coach(es) with that TeamID to get the phone number(s).

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