In this project, you will design and implement a database for keeping track of information about a car rental company. You will first design an EER schema diagram for this database application. Then, you will map the EER schema into a relational database schema and implement it on MYSQL. Finally, you will load some data into your database, and create some queries and update transactions. Assume that the following requirements were collected for this application: 1. The database keeps track of CUSTOMERS. Each CUSTOMER has a unique IdNo (assume this is a unique integer generated by the system for each new CUSTOMER, such as 1, 2, 3, ...), a Name (assume this is string consisting of an single initial and last name only for simplicity, such as "J.Smith" or "R.Wong"), and a Phone (a string of 12 characters such as "817-272-3000"). 2. The database keeps track of CARS available for rental, which are categorized based on their type. There are six main types: COMPACT, MEDIUM, LARGE, SUV (Sports Utility Vehice), TRUCK, and VAN. Each type of car has its own DailyRate and WeeklyRate (assume all cars of the same type have the same rental rates). For simplicity, we will assume that there is only one rental location. 3. Each CAR has a VehiclelD (a unique number for each car - assume it is a number 1001, 1002, 1003, ...), Model (Chevy, Toyota, Ford, ..), and Year (2015, 2014, ...). 4. The database will keep track of the current (active) RENTALS as well as scheduled RENTALS of each CAR. The are two types of RENTAL: DAILY and NEEKLY. For each DAILY RENTAL, the information kept will include the specific CAR and CUSTOMER as well as the NoOfDays, StartDate, and ReturnDate (the ReturnDate can be calculated from the StartDate and NoOfDays). For each WEEKLY RENTAL, the information kept will include the specific CAR and CUSTOMER as well as the NoOfWeeks, StartDate, and ReturnDate (the ReturnDate can be calculated from the StartDate and NoOfWeeks). Each rental will also have the AmountDue for the rental, which is a derived value that can be calculated from the other information. 5. The database will also keep track of which CARS are available for rental during which periods. Part 1 You will first design an EER schema diagram based upon the RENTALS database requirements specified above, and create an EER schema diagram and documentation report describing your design choices. As part of this assignment, you should identify any missing or incomplete requirements, and explicitly state them in your documentation. You should also explicitly state any assumptions you made that were not part of the requirements listed above.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Please show me the EER schema diagram as well as the documentation report.

Here is more information for the diagram and documentation report.

The EER diagrams for your designs as well as documentation describing any assumptions you made, and the reasons for your design choices. Draw the EER diagrams using the notation in the textbook. You can use any drawing tool for drawing your diagrams.

In this project, you will design and implement a database for keeping track of information about a
car rental company. You will first design an EER schema diagram for this database application.
Then, you will map the EER schema into a relational database schema and implement it on
MYSQL. Finally, you will load some data into your database, and create some queries and update
transactions.
Assume that the following requirements were collected for this application:
1. The database keeps track of CUSTOMERS. Each CUSTOMER has a unique IdNo (assume this is a
unique integer generated by the system for each new CUSTOMER, such as 1, 2, 3, ...), a Name (assume
this is string consisting of an single initial and last name only for simplicity, such as “J.Smith" or
"R.Wong"), and a Phone (a string of 12 characters such as "817-272-3000").
2. The database keeps track of CARS available for rental, which are categorized based on their type.
There are six main types: COMPACT, MEDIUM, LARGE, SUV (Sports Utility Vehice), TRUCK, and VAN.
Each type of car has its own DailyRate and WeeklyRate (assume all cars of the same type have the
same rental rates). For simplicity, we will assume that there is only one rental location.
3. Each CAR has a VehiclelD (a unique number for each car – assume it is a number 1001, 1002, 1003,
...), Model (Chevy, Toyota, Ford, ..), and Year (2015, 2014, ..-.).
4. The database will keep track of the current (active) RENTALS as well as scheduled RENTALS of each CAR.
The are two types of RENTAL: DAILY and NEEKLY. For each DAILY RENTAL, the information kept will
include the specific CAR and CUSTOMER as well as the NoOfDays, StartDate, and ReturnDate (the
ReturnDate can be calculated from the StartDate and NoOfDays). For each WEEKLY RENTAL, the
information kept will include the specific CAR and CUSTOMER as well as the NoOfWeeks, StartDate,
and ReturnDate (the ReturnDate can be calculated from the StartDate and NoofWeeks). Each rental
will also have the AmountDue for the rental, which is a derived value that can be calculated from the
other information.
5. The database will also keep track of which CARS are available for rental during which periods.
Part 1
You will first design an EER schema diagram based upon the RENTALS database requirements
specified above, and create an EER schema diagram and documentation report describing your
design choices. As part of this assignment, you should identify any missing or incomplete
requirements, and explicitly state them in your documentation. You should also explicitly state
any assumptions you made that were not part of the requirements listed above.
Transcribed Image Text:In this project, you will design and implement a database for keeping track of information about a car rental company. You will first design an EER schema diagram for this database application. Then, you will map the EER schema into a relational database schema and implement it on MYSQL. Finally, you will load some data into your database, and create some queries and update transactions. Assume that the following requirements were collected for this application: 1. The database keeps track of CUSTOMERS. Each CUSTOMER has a unique IdNo (assume this is a unique integer generated by the system for each new CUSTOMER, such as 1, 2, 3, ...), a Name (assume this is string consisting of an single initial and last name only for simplicity, such as “J.Smith" or "R.Wong"), and a Phone (a string of 12 characters such as "817-272-3000"). 2. The database keeps track of CARS available for rental, which are categorized based on their type. There are six main types: COMPACT, MEDIUM, LARGE, SUV (Sports Utility Vehice), TRUCK, and VAN. Each type of car has its own DailyRate and WeeklyRate (assume all cars of the same type have the same rental rates). For simplicity, we will assume that there is only one rental location. 3. Each CAR has a VehiclelD (a unique number for each car – assume it is a number 1001, 1002, 1003, ...), Model (Chevy, Toyota, Ford, ..), and Year (2015, 2014, ..-.). 4. The database will keep track of the current (active) RENTALS as well as scheduled RENTALS of each CAR. The are two types of RENTAL: DAILY and NEEKLY. For each DAILY RENTAL, the information kept will include the specific CAR and CUSTOMER as well as the NoOfDays, StartDate, and ReturnDate (the ReturnDate can be calculated from the StartDate and NoOfDays). For each WEEKLY RENTAL, the information kept will include the specific CAR and CUSTOMER as well as the NoOfWeeks, StartDate, and ReturnDate (the ReturnDate can be calculated from the StartDate and NoofWeeks). Each rental will also have the AmountDue for the rental, which is a derived value that can be calculated from the other information. 5. The database will also keep track of which CARS are available for rental during which periods. Part 1 You will first design an EER schema diagram based upon the RENTALS database requirements specified above, and create an EER schema diagram and documentation report describing your design choices. As part of this assignment, you should identify any missing or incomplete requirements, and explicitly state them in your documentation. You should also explicitly state any assumptions you made that were not part of the requirements listed above.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Enhanced ER Model
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education