Display the output of the sql statement

Assignment Help PL-SQL Programming
Reference no: EM13499120

Question 1

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'

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.

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

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.

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.

Display the output of the SQL statement.

Question 2

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);

3. 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 MY_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.

4.      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;

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

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.

Reference no: EM13499120

Questions Cloud

Explain what is the heat absorbtion for 100 g liquid water : What is the heat absorbtion for 100 g liquid water that is frozen to ice at 0 degrees C and 1 atm
Find the magnitude of the impulse delivered by the wall : A super ball, made of rubblerlike plastic, is thrown against a hard smooth wall. What is the magnitude of the impulse delivered by the wall
Explain the ratio of the number of atoms of the isotopes : The ratio of the number of atoms of the isotopes Ga-69 and Ga-71 in eight samples from different sources was measured in an effort to understand differences in reported values of the atomic mass of gallium.
What is the average angular speed of the grindstone : A grindstone of radius 4.0 m is initially spinning with an angular speed of 8.0 rad/s. What is the average angular speed of the Grindstone
Display the output of the sql statement : 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
Explain what is the millimolar mm concentration of ethanol : What is the millimolar (mM) concentration of ethanol in the blood at this limit. The density of ethanol is 0.789 g/ml.
Prepare the income statement and owner equity statement : Charles Brown opened Charlie's House Cleaners on March 1. During March, the following transactions were completed.
Estimate the torque on the loop : A semicircular loop lies in the z = 0 plane and carries a current I 50 A . When a magnetic flux density B = 2ay + az T is applied, what is the torque on the loop
Explain what are the major species present in solutions : What are the major species present in 0.250 M solutions of each of the following acids? Calculate the pH of each of these solutions.

Reviews

Write a Review

PL-SQL Programming Questions & Answers

  Create a plsql block to achieve the following using the hr

create a plsql block to achieve the following using the hr schemaselect the name salary and department of the employee

  Convert requirement to logic and then to sql

Prepare the SQL query for each of given requirements. Convert requirement to logic, then to SQL. Illustrate the names of all products which have been sold.

  How does the order of joins in an sql statement

How does the order of joins in an SQL statement affect the performance of the join and what can the DBA do to determine the preferred order of joins for an SQL statement that includes the join of at least three tables?

  Write a perl subroutine for temperature conversion

Write a perl subroutine for temperature conversion named ' convert_temp '. It should be able to handle both Fahrenheit to Celsius conversions as well as Celsius to Fahrenheit conversions.

  Produce a report showing an organization chart

Produce a report showing an organization chart for Mourgos's department. Print last names, salaries, and department IDs and create a report that shows the hierarchy of the managers for the employee Lorentz. Display his immediate manager first

  Script that creates and calls a stored

Write a script that creates and calls a stored procedure named spInsertProduct that inserts a row into the Products table. This stored procedure should accept five parameters

  How primary and foreign-key relationships are applied

At this point, you will add data to your database and validate that they loaded properly. In tabular format, include 3 rows for each table, making sure that the primary-key and foreign-key relationships are properly applied.

  Write sql create table statement to create pet table

Write an SQL CREATE TABLE statement to create the PET table without referential integrity constraint on OwnerID in PET.

  Identify the choice that best completes the statement

Based upon the contents of the BOOKS table, which of the following SQL statements will display the retail price for two copies of each book currently in inventory?

  Write a xquery which returns all concert titles

Write a XQuery which returns all concert titles whose type is chamber orchestra where average ticket price is at least $50.

  Question 1 write a query to display the last name

question 1 write a query to display the last name department number and salary of any employee whose department number

  Create report to display scr courses in alphabetical order

Create the detail report which will display all SCR courses in alphabetical order, with a course name and instructor name in the group header.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd