COMP643 Advanced Database Management
Assignment 3 Worth: 20% of course marks for COMP643.
Due: Friday, 14 th June 2024 5:00 p.m. Late Penalty: 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 16 th June 2024 5:00 p.m.
Submission: via COMP643 on LEARN
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 beadministered.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 theMongoDB is not in the form of tables and querying does not have to be done using SQL. Additionallearning 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 databasehave been converted to MongoDB. You can download the JSON file (“rosesdb.json”) for creating thisdatabase 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 whoare not from “Christchurch” sorted by customer id.
(4 points)
- Display the customer id, customer name, customer city and customer balance of all customerssorted by customer name in ascending order. (3 points)
- Display the product name and product price for every product in the system. Sort the results byproduct name. Duplicates should be removed. (3 points)
- Display the product name and total for all orders made by customer number 1001 sorted bytotal in descending order. (4 points)2 | P a g e
- 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. (5points)
- Display the number of distinct products in the system. (3 points)
- Display the product name and the product price for the product with highest price. (4 points)
- Display the customer name for all customers who have never ordered a product. (2 points)
- Display all cities customers are based in and the number of customers in each city. (3 points)
- Display the product name and total for all the product(s) ordered by “John”. (3 points)
- Display 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 collectionof 1,000 roses in each location and to cater for over 20,000 customers nationwide. Write a one-pagesummary (excluding references) to discuss the suitability of a document database to store andmanage customer orders. Your discussion should consider three factors. These factors may includedata 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 ofthe three selected factors.24Spelling, punctuation, grammar and references
标签:customer,COMP643,product,Management,name,points,each,Display,Advanced From: https://www.cnblogs.com/qq99515681/p/18243190