CAR HIRE database - ASSIGNMENT 2

profileActiveNow
 (Not rated)
 (Not rated)
Chat

Assignment 2

 

 

Due date:

07 October 2014

Value:

100%

 

 

Please submit the CODE and OUTPUT for all programming questions.

 

For the output, a screen dump is highly encouraged.

 

IMPORTANT NOTES – PLEASE READ BEFORE YOU BEGIN WORK

 

  1. This assignment prepares you for the examination and you should consider each hour devoted to the assignment as an hour devoted to exam preparation.
  2. I urge you not to give up if you are unable to do all the questions. Do as many as you can and submit what you have done.

 

In this assignment, you will use the CAR HIRE database. The CAR HIRE database including appropriate data will be made available on the USQ Oracle server. You can query these tables as if they are in your own schema but you are not permitted to insert or update data in these tables. The specification for the CAR HIRE database is as follows:

The table descriptions appear below, including the column names, datatypes and the meanings for values in the columns. Familiarise yourself with the tables and the data.

 

I_CAR

 

 

 

 

 

 

 

 

 

 

 

 

 

I_CARGROUP

 

 

I_MODEL

 

 

I_CUSTOMER

 

 

I_BOOKING

 

 

 

 

 

Question 1 (35 marks)

Write a function (called most_recent_rental) that returns the most recent date of rental for a particular car (registration) for all completed bookings made for that car.  If a rental does not exist for that car registration, the function should return ‘NO RENTALS’ (5 marks)

Write a second function (called maximum_rental_period) that returns the maximum rental period for a particular car (registration) for all completed bookings made for that car.  If the car has only one booking but has not been returned it should return a ‘-999’ for the rental period. (5 Marks)

For both the functions, you should check for completed bookings, i.e. miles_in is not null.

Write a procedure that takes a car registration and returns the most recent date of rental and the maximum rental period for that car.  The procedure had the following formal parameters (10 Marks)

PROCEDURE CAR_DETAIL( REGISTRATION IN VARCHAR2, RECENT_DATE VARCHAR2, RENTAL_PERIOD OUT NUMBER)

Write an anonymous block to call the procedure using an explicit cursor to display the details (registration, most_recent_rental, maximum_rental_period) for all the cars in the i_car table by calling the procedure above.  The output should only include cars that have a booking and have been returned. (10 Marks)

The CAR_REGSTRATION was last rented on MOST_RECENT_RENTAL and has had the longest rental period of MAXIMUM_RENTAL_PERIOD.

Write ONE SQL statement that displays the registration, model name and cost for each car and calls the two functions to display the most recent date of rental and the maximum rental period for each of the cars.  (5 marks)    

 

Display the output of the SQL statement.

 

Question 2 (20 marks)

The car hire company is concerned about possible unauthorised changes to customer details that may compromise the company's security and privacy policies. You will create a database trigger to monitor such changes to some important columns in the I_CUSTOMER table.

  1. Create a copy of the I_CUSTOMER table in your own schema by using the following command:
    CREATE TABLE MY_CUSTOMER AS SELECT * FROM I_CUSTOMER;
  2. Also create a table to store change logs (CUSTOMER_CHANGELOG) by using the following command:

CREATE TABLE CUSTOMER_CHANGELOG

(

cust_no NUMBER(5),

cust_name VARCHAR2(20),

contact VARCHAR2(20),

log_date DATE);

  1. Create a database trigger with the following specification:
  • fires AFTER an UPDATE on MY_CUSTOMER table.
  • fires if there is any change to  cust_name or contact columns of the N_CUSTOMER table.
  • fires for each row. 
  • inserts a first row: the affected cust_no column, the OLD values of the cust_name and contact columns and the current date into the table CUSTOMER_CHANGELOG.
  • inserts a second row: the affected cust_no column, the NEW values of the cust_name and contact columns and the current date into the table CUSTOMER_CHANGELOG.

 

  1. Test the trigger with the following specification:
  • Go ahead and make a change to MY_CUSTOMER table by issuing the following command:

UPDATE MY_CUSTOMER

SET cust_name = 'Sam Spade', contact = 'Kaptain Krunch'

WHERE cust_no = 8981;

  1. 5.     Now, select all rows from the CUSTOMER_CHANGELOG table. This should display the old and new values of the changes you made due to firing of the trigger. Output all the rows of CUSTOMER_CHANGELOG table.

 

Question 3 (40 marks)

 

Create a PL/SQL procedure called report_rental_month which has the needed IN parameters for year and month.  The procedure will display to the screen the following format for each car rented during that year/month in the i_booking table.  The information needs to be retrieved using an explicit cursor for all rentals in that year for that month.

 

Car REGISTRATION was rented TIMES for a total of DAYS

 

You will need to write extra functions to calculate the number of times and total number of days the car was booked for that month for that year to be called from within the procedure. Again only where the rental has finished and the car has been returned.

 

Write a procedure called report_booking_totals that will produce the following output in the format specified bellow.  The procedure needs to use explicit cursor/s for each year starting with the oldest year produces a summary of the cars rented for that month.  The years and month output needs to be in ascending order.

 

Year 2011

   January

Car REGISTRATION was rented TIMES for a total of DAYS

Car REGISTRATION was rented TIMES for a total of DAYS

   March

Car REGISTRATION was rented TIMES for a total of DAYS

Car REGISTRATION was rented TIMES for a total of DAYS

Year 2012

   February

Car REGISTRATION was rented TIMES for a total of DAYS

   July

Car REGISTRATION was rented TIMES for a total of DAYS

 

Total number of booking is COUNT for a total of DAYS with income of $AMOUNT.XX.

 

Currently there are COUNT numbers of rentals not finalized

 

The AMOUNT is to be calculated with a function call.  Rentals not finalized are rentals that have not been returned to the rental place.  The numbers not finalized is to be calculated either with a function call or during the processing of the procedure.

 

Important Notes:

 

  • You must NOT use any implicit cursors, table joins, subqueries, set operators, group functions or SQL functions (such as COUNT) to create the PL/SQL function or the PL/SQL anonymous block.
  • The PL/SQL anonymous block must be ONE block only. Do NOT write a block to perform each task of the specification above.

 

MARKING CRITERIA

  1. The code executes without error messages.
  2. The code produces the required output.
  3. The code addresses the specification and provides a solution to every element in the specification.
  4. The code is well structured and, where applicable, adopts an optimal and sophisticated approach to PL/SQL.
  5. The programing units have been separated into necessary functions and procedures

 

    • 9 years ago
    CAR HIRE database - ASSIGNMENT 2
    NOT RATED

    Purchase the answer to view it

    blurred-text
    • attachment
      oracle_solution_-_car_hire_database.docx