By Justin LeBourdais. Description Designed for my mother’s business Small updateable database for her clients and employees Designed for ease of use,

Slides:



Advertisements
Similar presentations
JQuery MessageBoard. Lets use jQuery and AJAX in combination with a database to update and retrieve information without refreshing the page. Here we will.
Advertisements

Session 2Introduction to Database Technology Data Types and Table Creation.
Using the What Am I Template Copy the presentation to your hard drive. Open the slides using slide sorter and copy slides #3, 4 and 5 for each question.
By C.J. Wilber WHAT I LEARNED IN MATH.. This week in math we learned how to tell if one decimal is bigger than an other. For example 6.3 is bigger than.
Video Rental Store M.S. Access Module CAS 133 Basic Computer Skills/MS Office Russ Erdman.
When a machine learner / data miner tries to do networking Dave Musicant Carleton College.
1 Web Wizards Guide To PHP David Lash Chapter 1 Introduction to PHP.
Revisions If you received the grade: “R” If you received the grade: “R” You must do a revision to receive a grade for lab 2. You must do a revision to.
DT211 Stage 2 Databases Lab 1. Get to know SQL Server SQL server has 2 parts: –A client, running on your machine, in the lab. You access the database.
AMG Attendance System Product Description Copyright © 2009 AMG Employee Management, Inc.AMG Employee Management, Inc.
All payslips contain the following information: Employers Name Your Name, Date of Payment National Insurance Number Tax Code Payment Method (BACS, Cash,
The Basics of Hiring Student Employees The basic steps for hiring a student employee are as follows: Step 1 Determine your department’s needs and budget.
Command School On Task In Touch Online Software for Schools Developed by Schools.
Millennium 3 Your Service Bureau Name & Logo Here.
Stimulsoft Reports.Net 20 Problems which Stimulsoft Reports.Net solves
Software Engineering 2003 Jyrki Nummenmaa 1 CASE Tools CASE = Computer-Aided Software Engineering A set of tools to (optimally) assist in each.
Nathan Perkins. Project Description  A database for my online Social Network website – DJBeat.net  Site is used by music producers, disk jockeys and.
IPC144 Introduction to Programming Using C Week 1 – Lesson 2
Can You Relate? The more quotes you make, all other ratios the same, the more sales. However… It takes too long to create a quote 1.Drive to prospect.
Source Control How to be the 1337 in project management source control.
1 Agenda – 03/25/2014 Login to SQL Server 2012 Management Studio. Answer questions about HW#7 – display answers. Exam is 4/1/2014. It will be in the lab.
CS 111 – Nov. 10 Structured Query Language (SQL) –We’ve already seen simple select statements, with optional “where” clause and aggregate functions. –More.
Alesco User Group Cairns Conference 2015 Using API’s in Alesco.
Evaluation Criteria. What is Evaluation? Happens at Last phase of PSM This is NOT testing NOT finding faults to fix! DOESN’T improve the system, but facilitate.
CS 320 Assignment 1 Rewriting the MISC Osystem class to support loading machine language programs at addresses other than 0 1.
SNC ESL Database System Paul McEnaney Spring 2010.
GAME DESIGN CLASS!!! :D Lead by Lucas. Project Summery  Goal: Successfully continue organizing and teaching the game design class.  Goal: Create an.
Unit 1 – Improving Productivity Dylan Wakelam Instructions ~ 100 words per box.
TOPIC Growing Pains: A comic strip. LESSONGrowing Pains Do you ever wish you had more time to do fun things like watching t.v. or playing computer games?
] COREY PEARSON [ ASUG INSTALLATION MEMBER MEMBER SINCE: 2008 CHAVONE JACOBS [ ASUG INSTALLATION MEMBER MEMBER SINCE: 2003 ALLAN FISHER [ ASUG INSTALLATION.
 LOG ONTO UCONNECT  SCHOOL SERVICES  BRONCHO CENTRAL SERVICES  EMPLOYEE  TIME SHEET.
Excelsior Software’s Pinnacle Gradebook New Web Version: Pinn 7.2 Adult General Education Programs at the Community Schools & Adult Centers January 2009.
1. When things go wrong: how to find SQL error Sveta Smirnova Principle Technical Support Engineer, Oracle.
Millennium 3. System Specifications Microsoft Windows 32 bit software Microsoft SQL database.
Data delivery Eileen Howes 10 April Data Management and Analysis Group Summary What we wanted What we got What we want from 2011 Census.
I want to do SQL, I start as if I am doing a regular query.
When I want to work with SQL, I start off as if I am doing a regular query.
CS 281 – Fall 2015 Lab 4 Parametric Query and Forms in MS Access.
Mock Objects in Functional Testing Sven Rosvall. Dimension Data Cloud Business Unit.
MYP QUESTION What is Access? What are the key features of Access?
Computer History Perform research and discover information on the history of computers. Complete this PowerPoint file. Write information in your own words.
Scientific Notation Created by Patrick Haney. Scientific Notation (S.N.) is a way to look at numbers that are very large in magnitude or very small in.
SLAMS To write a good answer to a question, SLAM it!!
LEGAL AND MORAL ISSUES – CODE OF CONDUCT Year 13.
IMS 6217: Database Design & Entities 1 Dr. Lawrence West, MIS Dept., University of Central Florida Database Design--Topics DB Design.
Final Project Program Improvement Objective (PIO) Database Maintenance Perl Class/CS149 - Prof.Jon Degallier Gokila Nandha Balakrishnan Ohlone College.
Google maps engine and language presentation Ibrahim Motala.
Database Planning Database Design Normalization.
EduGeek Logon Tracker Next generation user tracking.
1 D201 WILD CARE DATABASE. 2 Right click on text file Then Save target as. Save this in your DATABASE folder Open this file or find the page in the booklet.
AS computing Data Entry. Structured data This kind of data has a structure. Word processed documents are usually structured. They have paragraphs, indentation.
Multiplication Timed Tests.
2016 STS Data Manager Survey Results
Web Application for Home Energy Assistance Program
Exploring and Evaluating Computational resources on the Web Module 4
LO: to be able to avoid common errors and use correct spelling.
Embedding the Reporting Engine Version 3.5
Python 18 Mr. Husch.
Other Features – Filter Options
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
Learning outcomes Understand how to prepare for business
PuTTY Download Putty from:
Developing a Model-View-Controller Component for Joomla Part 3
CIS16 Application Programming with Visual Basic
Computer Science Projects Database Theory / Prototypes
How to Create a Microsoft Access 2007 Database
Evaluative Research Key Terms Evaluative Research Key Terms.
Python 18 Mr. Husch.
Elizabeth Liner Lab of Things.
End of day Calculator and special order parts tracking
Presentation transcript:

By Justin LeBourdais

Description Designed for my mother’s business Small updateable database for her clients and employees Designed for ease of use, most code that needs to be run would already created.

Outcomes Database that works Easy to use, database doesn’t seem overly complex All SQL to create and to update is available in txt files

Problems Data model and database has a few incorrect relationships Didn’t follow naming convention correctly, used own method.

Lessons Learned Follow conventions! Data models are important. If it is wrong, you will have trouble later on Keep notes and all SQL code that you use. It will save you lots of work later.

Incorrect Model

Better Model

Example Code USE capstone; SELECT CAST(a.FirstName + ' ' + a.LastName AS CHAR(20)) "Employee Name", CAST(ahw.Week AS SMALLDATETIME) "Work Week", CAST(ahw.sunday + ahw.monday + ahw.tuesday + ahw.wednesday + ahw.thursday + ahw.friday + ahw.saturday AS CHAR(5)) "Hours worked", CAST (((ahw.sunday + ahw.monday + ahw.tuesday + ahw.wednesday + ahw.thursday + ahw.friday + ahw.saturday)* a.HourlyRate) AS DECIMAL(7,2)) "Pay" FROM attendant_hours_worked ahw, attendants a WHERE ahw.week =' ' AND ahw.AttendantID = a.AttendantID;

Example Output