TABLE OF CONTENTS ©Copyright: 2019 XXXXXXXXXX/09/2019 Version 1 Page 1 of 6 HS2021 Database Design and Use Group Assignment XXXXXXXXXXThis is a group assignment with a maximum of 2-4 students per...

1 answer below »
Hi I wants to know how much is this assignment with all the requirements ???and the ERD must be like the example i sent along with the assignment file



TABLE OF CONTENTS ©Copyright: 2019 09/09/2019 Version 1 Page 1 of 6 HS2021 Database Design and Use Group Assignment This is a group assignment with a maximum of 2-4 students per group Submission Requirements SQL scripts that you submit must work with Oracle Live SQL. You must submit your assignment as a single .zip file using Blackboard submission link. Your single .zip file must include the following three files: 1. A single .PDF document named ASS2.PDF that contains: All student names and numbers on page 1 A fully expanded and complete ERD diagram (see part 1). o The diagram must be an image created with a diagramming tool such as draw.io or Visio o The diagram must follow the ERD symbol conventions used in lectures and labs. The relational schema (see part 2) Please ensure that you know how to create a pdf file at least one week prior to submission of your assignment. [A simple way to create the above PDF document is to create an MS Word document, add the appropriate text and paste diagrams from Draw.io or Visio. Finally, choose either Save As PDF, or Print the document using the Adobe PDF Printer option. Both PDF options are available in all Swinburne labs.] 2. The script file named Ass2_SQLScript.TXT that contains SQL statements for parts 3-5. 3. The Doc file named Ass2_SQLOutput.docx contains output generated by the above script. NOTE: These files must be zipped into a single .zip file prior to submission. Do not submit a .rar or .7z file. ©Copyright: 2019 09/09/2019 Version 1 Page 2 of 9 Aussie Wine Tours Part 1. Create a fully expanded ERD based on the information in the following narrative. Business Narrative Aussie Wine Tours (AWT) conduct tours of the wineries of Victoria's Yarra Valley wine region. Each tour is run on a single day. Currently, there are several wine tours including The White Wine tour, The Red Wine tour and The Sparkling Wine tour. The Red Win Tour is a very popular tour and has often run 3 or 4 times in a single month. The tour schedule depends upon the availability of the wineries, the availability of the tour leaders and the public interest. Each tour takes usually takes around 6 hours to complete and is led by one or more of AWT's well-renowned wine experts. Each tour has a 'current price'. However, due to various market forces, prices have been rising over the past couple of years. For example, last year the Red Wine Tour was $170 but now it's the current price is $200. No two events for the same tour can occur on the same day. (e.g. The Red Wine Tour cannot be conducted twice on the same day). AWT have many satisfied customers, many of whom have attended multiple wine tours over the years. Each customer has a customer id, name, address and contact phone number. AWT usually plan and advertise wine tour details and dates about 6 months prior to the running of each tour. Customers usually ring AWT to make bookings for their wine tour. Each booking stored in the AWT system is for a single person. (E.g. A husband and wife attending the same tour event will have two bookings created for them. Each booking is for a single customer). AWT have a number of printed wine tour brochures – one for each of the different wine tour (E.g. A 4page printed glossy brochure that has photos and details of the Red Wine Tour). People often ring up or email AWT and request a brochure. Brochures are only sent to customers. If the person requesting a brochure is not already a customer, then AWT create a new customer by assigning a customer id and recording the person's name, address and ©Copyright: 2019 09/09/2019 Version 1 Page 3 of 9 phone number. When a brochure is requested, AWT record the date of the request. After the brochure is mailed to the customer, AWT record the date that the brochure was sent. Obviously, a customer who requests a brochure is not under any obligation to make any bookings. A customer makes payment(s) for each booking. Each payment made is for a single booking. AWT record the amount of the payment, the date of the payment, the type of payment made (cash, credit card or cheque) and which booking the payment is for. Some customers may two or more payments for single booking (e.g. the tour price is $200 and the customer makes two payments $120 and $80.) Sometimes (though rarely), a customer makes a payment for an amount larger than required. AWT simply record the amount of the payment. (You simply have to record the amount of the payments made. You do not need to concern yourself with how refunds or payment transfers may occur). AWT have a number of gifts available for participants attending tour events. Generally, three or four gifts are offered to participants of a tour event. The gifts on offer are often decided by a mixture of the type of tour, the whim of the wine expert leading the event and availability of stock. On the day of the event, each participant may choose a maximum of two gifts. AWT records which gifts are chosen by each booked customer. Obviously, a customer has the right to not select any gifts while attending a tour. Note: You are not expected to limit the number of gifts selected by a customer to 2. This is beyond the scope of an ERD. Such a restriction would normally be programmatically solved using a Stored Procedure, Trigger or some other programming technique). IMPORTANT: You must not ask answers or assistance from your tutor as this is an assessment that needs to be done by team members by themselves. The tutor will provide only general guidelines only. Part 2. • Create a Relational Schema based on your ERD. Part 3. • Create a file called Ass2_SQLScript.TXT which contains SQL statements that can be executed by your tutor. All SQL statements must be able to be executed successfully in Oracle Live SQL. ©Copyright: 2019 09/09/2019 Version 1 Page 4 of 9 • Add the Create Table to the script file to create all of the tables. • All tables must enforce primary key and foreign key constraints. Surrogate Keys must not be introduced into your solution. • Add the Insert statements to populate your tables with only the data used in Appendix A below. Do not add your own data. Part 4. Demonstrate your foreign key constraints work correctly. Each of the generated Insert statements must fail due to foreign key constraint errors. Add the Insert statements to the script file. 1. Attempt to insert a row that allocates expert # 22 to Tour B1 conducted on 2020/02/18. 2. Attempt to insert a row that books customer C078 on Tour W1 conducted on 2020/01/01. 3. Attempt to insert a row that makes a payment for customer C225 conducted on Tour W1 conducted on 2020/01/01. 4. Attempt to insert a row that allocates gift G09 to Tour W1 conducted on 2020/01/01. 5. Attempt to insert a row that allows customer C123 to select gift G09 on Tour R2 conducted on 2020/10/07. Part 5. Create SQL queries to do the following. Add the SQL statements to the script file. Query 1. List Customer No, Name, Address and Phone No of all customers. The List must be in Customer No sequence. Query 2. List tour code, event date, wine expert name(s) of all tour events. The List must be in tour code, event date, wine expert surname sequence. Query 3. List tour code, event date, customer no and customer name for every booking made The List must be in tour code, event date, customer no sequence. Query 4. List tour code, event date, gift code and gift description for all gifts offered on all tour events The List must be in tour code, event date, gift code sequence. ©Copyright: 2019
Answered Same DaySep 15, 2021HS2021

Answer To: TABLE OF CONTENTS ©Copyright: 2019 XXXXXXXXXX/09/2019 Version 1 Page 1 of 6 HS2021 Database Design...

Neha answered on Sep 20 2021
140 Votes
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here