COMP643 Advanced Database Management Assignment 3
20% of course marks for COMP643.
Friday, 14th June 2024 5:00 p.m.
Work not received by the due time attracts an immediate penalty, up to 25% of the points available. No work will be accepted after Sunday 16th June 2024 5:00 p.m.
via COMP643 on LEARN
Worth:
Due:
Late Penalty:
Submission:
IMPORTANT
The use of Artificial Intelligence (AI) tools, such as ChatGPT, to complete this assessment is prohibited. Assessment answers will be analysed for evidence of the use of AI and penalties may be administered.
The University policy on Academic Integrity can be found here.
PART 1 – QUERYING AND UPDATING THE DOCUMENT DATABASE (50 POINTS)
MongoDB is an open-source document-oriented database that is designed to store large scale data. It is categorised as a NoSQL (Not only SQL) database because the storage and retrieval of data in the MongoDB is not in the form of tables and querying does not have to be done using SQL. Additional learning materials for MongoDB can be found on COMP643 LEARN Page.
In Assignment 2, Part 2, you used a database to process orders for roses. A subset of this database have been converted to MongoDB. You can download the JSON file (“rosesdb.json”) for creating this database in your local machine.
Based on this document database, write queries in MongoDB for each of the following tasks. Submit the queries in a text file, each query MUST be labelled with the question number (e.g, 1a).
-
Display the customer id and customer name of all customers with a balance of $0.00 and who are not from “Christchurch” sorted by customer id.
(4 points) -
Display the customer id, customer name, customer city and customer balance of all customers sorted by customer name in ascending order. (3 points)
-
Display the product name and product price for every product in the system. Sort the results by product name. Duplicates should be removed. (3 points)
-
Display the product name and total for all orders made by customer number 1001 sorted by total in descending order. (4 points)
1|Page
-
Display the product name and product price for all products that cost greater than or equal to $50.00. (3 points)
-
For each customer, display the customer’s name, the number of order and the order total. (5 points)
-
Display
-
Display
-
Display
-
Display
-
Display
-
Display
the number of distinct products in the system. (3 points)
the product name and the product price for the product with highest price. (4 points)
the customer name for all customers who have never ordered a product. (2 points)
all cities customers are based in and the number of customers in each city. (3 points)
the product name and total for all the product(s) ordered by “John”. (3 points)
the product name and the number of times each product has been ordered. (3 points)
-
Insert a new customer, (10013, “Hans”, “Dunedin”, 0.00). (5 points)
-
Insert a new order for Hans, (“Wenlock”, 40, 3, 120.00) and update the customer balance for
Hans to 120.00. (5 points)
PART 2 – EVALUATIONS OF THE DOCUMENT DATABASE (30 POINTS)
Lincoln Rose Farm is expanding to 20 different cities in New Zealand. The plan is to have a collection of 1,000 roses in each location and to cater for over 20,000 customers nationwide. Write a one-page summary (excluding references) to discuss the suitability of a document database to store and manage customer orders. Your discussion should consider three factors. These factors may include data model (schema flexibility), usability and performance, data integrity and accuracy, functionality, security and cost. All references must follow APA 7th Edition reference format.
Submit your discussion as a PDF. Part 3 Marking Criteria
Description Marks
Discussion of suitability of a document database using each of 24
the three selected factors.
Spelling, punctuation, grammar and references 6
Total 30
2|Page