The winstore is summarized as follows A customer at the online winestore purchases wines by placing one or more orders Each customer has exactly one set.

Slides:



Advertisements
Similar presentations
Seed Management System Software for the Seed Industry.
Advertisements

09/04/2015Unit 2 (b) Back-Office processes Unit 2 Assessment Criteria (b) 10 marks.
CENTRALIZE SOLUTION FOR METER SEAL TRACKING Meter Seal Tracking.
“A faster, easier way to do business with us” Introducing My Millcraft.com.
General Financial Supply Website & E-Commerce Solutions This presentation will demo the GFS corporate website and On-Line Order Inquiry options available.
Jennifer Widom On-Line Analytical Processing (OLAP) Introduction.
ORIENTAL BUFFET ONLINE BY MARTIN SHUEH. BACKGROUND - Family Business - Open since locations.
A Guide to SQL, Seventh Edition. Objectives Introduce Premiere Products, a company whose database is used as the basis for many of the examples throughout.
Data Model Examples USER SPECIFICATIONS.
YOUR ALL-IN-ONE ONLINE SOLUTION HOME SCREEN TYPE IN POSTAL CODE TO SELECT A LOCATION NEAREST YOU.
ISI Request For Quote Integrates with Microsoft Dynamics GP Inventory, Purchase Order Processing and Sales Order Processing Dynamics is a registered trademark.
ISupplier Portal September iSupplier Portal Purpose Benefits Login Navigation Viewing Information Advance Shipment Notices Preferences.
Your on-line connection to Ferraz Shawmut; Getting Started Login / out Contact Us Home Page, Account Inquiry My E-Account Account Status Ordering Options.
A Simple Online Store By: Lisa Schwartz ECE 3553 – Multifarious Systems Dr. Këpuska – Fall 2006.
GROUP PROJECT Design Specification (2ndPRESENTATION) AMIR KHAN, DALIA BLANCO, EIKO TAKEMOTO March 30, 2010 Insta Wireless.
Intro to LAMP Programming Presented for CIS Faculty at SAC by Dan Zollars.
Metal Business Manager A Comprehensive Business Solution for Metal Service Centres & Warehouses.
Emall id name description owner address1 address2 city state zip country created updated storefront id name description owner address1 address2 city state.
Intro to LAMP Programming Presented for SAT Linux Users' Group by Dan Zollars.
Presented By: Muhammad Tariq Software Engineer Web Development Training course.
CENTURY 21 ACCOUNTING © 2009 South-Western, Cengage Learning LESSON 6-1 The Nature of Merchandise Inventory.
Reports. Report Summary Warehouse Reports Returned Material Serial Numbers Not Found This report list the serial numbers of material returned which were.
Order Entry Program Please see speaker notes for additional information!
SERBA DINAMIK SDN. BHD. Think Globally…..Act Locally….. PPE I PPE INVENTORY SOFTWARE.
Fixed Assets Campus Operations Portal SAISD Data Warehouse What is the Fixed Assets portal? The purpose of the Fixed Assets portal is to give campus and.
 Taber Shimono Lilyana Gross Andrea Nelson Chelsea Ball Eric Svendsen Shefflette.
Texas Bicycle Sports Presented by : Muhammad Rizvi Terry Lee Madhuri Yelamanchili.
Creating Warehouse Requisitions. 1.Find the shortcut on your system and open the program. 2.This screen will open, type in your User ID 3.Insert password.
Inventory Inquires WcBc is configured for Multiple types of Inventory Inquiries. WcBc is configured for Multiple types of Inventory Inquiries. By Item.
Forms 5.02 Understand database queries, forms, and reports.
Campus Operations Portal SAISD Data Warehouse Fixed Assets Fixed Assets Office The purpose of the Fixed Assets portal is to give campus and department.
We've made it easy for you to buy online. We’ve also added a dedicated customer care team to answer any questions or to walk you through the order process.
Database Principles Autumn 2007 High Distinction Assignment REBEL Sport Online Author: Joseph Diver.
Computer E-ssentials Group : Will Howell Tausif Rajkotwala
Visual Basic Group Project Clint Schramek Jennifer Webb Mark Puffer.
ZAPS: The Norton Psychology Labs STUDENT REGISTRATION INSTRUCTIONS.
1 MySQL and SQL. 2 Topics  Introducing Relational Databases  Terminology  Managing Databases MySQL and SQL.
Information Within An Organisation Additional Exercise 1 ANSWERS NB. As not whole case study was given some of these answers may not be within the text.
Registering for MasteringBiology TM
4 Copyright © 2011, Oracle and/or its affiliates. All rights reserved. Using Data Model Editor to Create Data Models Based on a SQL Query Data Set.
Truck Stock Phase 1 Goal: Johnstone customers or delivery drivers are provided with the ability to build orders with handheld devices. The order is created.
Order Database – ER Diagram
Chapter 1: Introduction All Powder Board and Ski
Veritas WebForm Ordering
NetApp Online Ordering User Tutorial
Mobile Desk® From Broom Street Software
LESSON 6-1 The Nature of Merchandise Inventory
LESSON 19-1 Determining the Quantity of Merchandise Inventory
iShop Training Module Secured Browsing
Step 1 Login on UHCP Site
How to transfer inventory items in quickbooks In the Transfer Inventory dialog box, enter details such as, the transfer date, item code, quantity transferred,
Purchase Request Online System
Purchase Request Online System
UniPrint Online Portal
Database Fundamentals
II. Project Architecture
First Name SURNAME, First Name SURNAME
Curtain Style QUOTATION Curtain Style
Enterprise Conceptual Relational
FLOW OF INVENTORY COSTS
Reston Real Estate Co., ERD (9/21/09)
Reston Real Estate Co., ERD (2/3/08)
Customer Order Entry Database Version: 1.1 by: R. Holowczak
Customer Portal Case Study.
Registering for MasteringBiologyTM
UNIT-5 Application Example
SALES RECEIPT Downloaded from
INVOICE Downloaded from
DELIVERY RECEIPT DELIVERY RECEIPT No : Date : Customer
Database Design Using Access
Presentation transcript:

The winstore is summarized as follows A customer at the online winestore purchases wines by placing one or more orders Each customer has exactly one set of user details Each customer has a title (such as “Mr” or “Dr”) and lives in a country. Each order contains one or more items Each item has a specific quantity of wine at a specific price A wine is of a type such as “Red,” “White,” or “Sparkling A wine has a vintage year; if the same wine has two or more vintages from different years, these are treated as two more distinct wines. Each wine is made by one winery

The winstore is summarized as follows Each winery is located in one region Each wine has one or more grape_variety entries. For example, a sine of wine_name “Archibald” might be made of the grape-variety entries “Sauvignon” and “Cabernet.” The order of entries is important. For example, a “Cabernet Sauvignon” is different from a “Sauvignon Cabernet” Each inventory for a wine represents the on-hand stock of a wine. If a wine is available at two prices, there are two inventories. Similarly, if the stock arrived at the warehouse at two different times, there are two inventories. Each wine may have one or more inventories.

users(cust_id, user_name, password) customer(cust_id, surname, firstname, initial, title_id, address, city, state, zipcode, country_id, phone, birth_date) grape_variety(variety_id, variety) inventory(wine_id, inventory_id, on_hand, cost, date_added) items(cust_id, order_id, item_id, wine_id, qty, price) orders(cust_id, order_id, date, instructions, creditcard, expirydate region(region_id, region_name) wine_type(wine_type_id, wine_type) wine(wine_id, wine_name, wine_type, year, winery_id, description) wine_variety(wine_id, variety_id, id,) winery(winery_id, winery_name, region_id) countries(country_id, country)

users -user_name (id) -password customer -cust_id (id) -surname -firstname -initial -title_id -address -city -state -zipcode -country-id -phone -birthdate orders -cust_id (id) -order_id (id) -date -instructions -creditcard -expirydate items -cust_id (id) -order_id (id) -item_id (id) -wine_id -qty -price wine_type -wine_type_id (id) -wine_type grape_variety -variety_id (id) -variety wine -wine_id (id) -wine_name -wine_type -year -winery_id -description region -region_id (id) -region_name winery -winery_id (id) -winery_name -region_id countries -country_id (id) -country inventory -wine_id (id) -inventory_id (id) -on_hand -cost -date_added 1M wine_variety -wine_id (id) -variety_id (id) -id M N M1 M1 M 1 M 1 M 1