logo Use CA10RAM to get 10%* Discount.
Order Nowlogo
(5/5)

write a assignment on sale database with SQL queries

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

CSCI 3901 Assignment 5 

Due date: 11:59pm Monday, November 18, 2019 in git.cs.dal.ca at 

https://git.cs.dal.ca/courses/2019-fall/csci-3901/assignment-5/xxxx.git where xxxx is your CSID (this repository already exists, so clone it and then add your code to it). 

Problem 1 5 marks – Referencing the sales database from the database lab, provide SQL queries that answer the following questions: 

  1. a) Which customers are in a different city than their sales representative? b) Which orders included sales that are below the manufacturer’s suggested retail price 

(MSRP)? c) List the top 5 products for 2004 with the highest average mark-up percentage per order. 

Include the mark-up. The mark-up is the ratio of (sale price – cost) and cost. d) List the top 3 employees with the greatest average diversity of products in their orders. e) What is the average time needed to ship orders from each office in 2005, relative to the 

order date? 

Problem 2 

Goal Access SQL through Java. Gain some exposure to XML. 

Question You work for the Mini-Me Toy Car company. Management periodically wants a summary of the company’s operation over a period of time. 

Your job is to extract the summary information from the database. You will store the summary information in a file that follows an XML format. Someone else will then use XML tools (notably XSLT) to convert your information into something that management will review. 

Input Your program will obtain the following information from the keyboard in the following order: 

- The starting date for the period to summarize - The ending date for the period to summarize - The name of the file for the output All dates will be in a YYYY-MM-DD format. 

Output Your program will send all of its output to the specified file. 

The data that you extract will be in 3 categories: 

  1. Customer information 
  2. Report the customer name, address, number of orders in the period, and total 

order value 2. Product information 

  1. Report, for each product line, the product line name and for each product in the 

product line report the name, vendor, units sold, and total value of products sold 3. Employee information 

  1. Report, for each employee, their name, office, number of customers active in the 

period, and total order value In all of the reporting, do not report any customers or products who have not had any interaction over the reporting period. 

Your output file will be in an XML format. XML uses a set of tags to surround data to let you know what the data is. Some tags can be nested in other tags. 

We will use a simple version of XML. The first line of your XML file should provide information on the version of XML to use. The following line will be sufficient: 

 

Following this first line, we get a set of nested tags to store the data. The starting tag has the format <...> and the matching ending tag has the format <.../> (differing by the ending slash) where ... is the tag name. The outermost tag is year_end_report 

Here is a description of the correct nesting (in a data type definition (DTD) format): 

<!ELEMENT year_end_summary (year, customer_list, product_list) > <!ELEMENT year (start_date, end_date) > <!ELEMENT customer_list (customer*) > <!ELEMENET customer (customer_name, address, num_orders, order_value) > <!ELEMENT address (street_address, city, postal_code, country) > <!ELEMENT product_list (product_set*) > <!ELEMENT product_set (product_line_name, product*) > <!ELEMENT product (product_name, product_vendor, units_sold, total_sales) > <!ELEMENT staff_list (employee*)> <!ELEMENT employee (first_name, last_name, office_city, active_customers, total_sales> 

All items without an ELEMENT line are of type #PCDATA (if that matters to you). The address in customer is just the first address line in the database. 

As an example to read this information, the tags year_end_summary must contain nested tags for each of year, customer_list, product_list, and staff_list_list. The tag customer_list will 

contain zero or more tags with name “customer”, as identified by the * after the “customer” tag in the ELEMENT clause. 

In an XML file, the spacing doesn’t matter. I encourage you to use spacing and tabs to make the XML file readable by a person. 

Information on XML can be found at w3schools.com. 

Sample output (just one entry shown for each section, for brevity): 

 

2003-02-12 </ start_date> 2003-02-19 </ end_date>  

 

Rovelli Gifts

 

Via Ludovico il Moro 22 Bergamo 24100 Italy 1 52151.81  

 

Planes  

1980s Black Hawk Helicopter </product_name > Red Start Diecast </product_vendor > 36 4825.44  

 

Pamela Castillo  

Paris 1 52151.81 </year_end_summary > 

Constraints 

  • You may use any data structure from the Java Collection Framework. 
  • Write your solution in Java. The solution code must be your own. 
  • Use the mysql JDBC connection for Java. 
  • If in doubt for testing, I will be running your program on bluenose.cs.dal.ca. Correct operation of your program shouldn’t rely on any packages that aren’t available on that system. 

Notes Use SQL vs Java as you deem best. 

  • Be sure to document your approach and any resources that you use. 
  • Look at where the bulk of the marks are in the marking scheme to help focus your efforts. 
  • You can run your queries against the csci3901 database on db.cs.dal.ca I will also make the sql file for the database available to you so that you can create your own copy of the database. 
  • You are expected to submit 

o Your Java code o External documentation o An argument as to why your solution is ready to be deployed 

Marking scheme 

  • Documentation (internal and external) – 3 marks 
  • Program design, organization, and style – 2 marks 
  • Proper XML file format, including human readability – 3 marks 
  • Correct extraction of customer information – 4 marks 
  • Correct extraction of product information – 4 marks 
  • Correct extraction of staff information – 4 marks 
  • Design elements of your program that would make it easy to report additional information for customers, products, or staff with minimal code changes (and avoiding cut-and-paste of code segments) – 2 marks 
(5/5)
Attachments:

Expert's Answer

1519 Times Downloaded

Related Questions

. Introgramming & Unix Fall 2018, CRN 44882, Oakland University Homework Assignment 6 - Using Arrays and Functions in C

DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma

. The standard path finding involves finding the (shortest) path from an origin to a destination, typically on a map. This is an

Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t

. Develop a program to emulate a purchase transaction at a retail store. This program will have two classes, a LineItem class and a Transaction class. The LineItem class will represent an individual

Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th

. SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

. Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

1519 Times Downloaded

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Um e HaniScience

790 Answers

Hire Me
expert
Muhammad Ali HaiderFinance

688 Answers

Hire Me
expert
Husnain SaeedComputer science

721 Answers

Hire Me
expert
Atharva PatilComputer science

867 Answers

Hire Me
June
January
February
March
April
May
June
July
August
September
October
November
December
2025
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
SunMonTueWedThuFriSat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
00:00
00:30
01:00
01:30
02:00
02:30
03:00
03:30
04:00
04:30
05:00
05:30
06:00
06:30
07:00
07:30
08:00
08:30
09:00
09:30
10:00
10:30
11:00
11:30
12:00
12:30
13:00
13:30
14:00
14:30
15:00
15:30
16:00
16:30
17:00
17:30
18:00
18:30
19:00
19:30
20:00
20:30
21:00
21:30
22:00
22:30
23:00
23:30