Explain validate the movie id to make sure it is valid

Assignment Help Other Subject
Reference no: EM13762355

Step 1: Creating the First Procedure

Your first procedure is to be named MOVIE_RENTAL_SP and is going to provide functionality to process movie rentals. Based on data that will represent the movie ID, member ID, and payment method your procedure will need to generate a rental ID and then insert a new row of data into the mm_rental table. The process will also need to update the quantity column in the mm_movie table to reflect that there is one less copy of the rented movie in stock. Along with the processing, you will also need to define some user-defined exception handlers that will be used in validating the input data. Since you may need to recreate your procedure several times during the debugging process, it is suggested that you use the CREATE OR REPLACE syntax at the beginning of the CREATE statement.

The following steps will help you in setting up your code.

You will need to define three parameters, one each for movie ID, member ID, and payment method. Make sure that each one matches the data type of the associated column in the database tables.

You will have several other variables that will need to be identified and defined. It might be easier to read through the rest of the specs before you start trying to define these (look for hints in the specifications).

You will need to define four user-defined exceptions; one for unknown movies, one for unknown member, one for unknown payment method, and one for if a movie is unavailable.

You will need to validate each of the three pieces of data passed to the procedure. One easy way to do this might be to use a SELECT statement with the COUNT function to return a value into a variable based on a match in the database table against the piece of data that

you are validating. If the query returns a zero then there is no match and the data is invalid; any value greater than zero means a match was found and thus the data is valid. You will need the following validations.

Validate the movie ID to make sure it is valid. If not then raise the unknown movie exception.

Validate the member ID to make sure one exists for that ID. If not then raise the unknown member exception.

Validate the payment method to make sure it exists. If not then raise the unknown payment method exception.

Check the movie quantity to make sure that there is a movie to be rented for the movie ID. If not then raise the unavailable movie exception.

If all the data passes validation then you will need to create a new rental ID. This process should be in a nested block with its own

EXCEPTION section to catch a NO_DATA_FOUND exception if one should happen. You can generate a new rental ID by finding the largest rental ID value in the mm_rental table (Hint: MAX function) and then increasing that value by one. The NO_DATA_FOUND exception would only be raised if there were no rental IDs in the table.

Now you are ready to insert a new row of data into the mm_rental table. Use the SYSDATE function for the checkout date and NULL for the check-in date.

Now, update the mm_movie table to reflect one less movie for the associated movie ID.

Finally, you will need to set up an EXCEPTION section for all of your exception handling. For each exception output, you want to state what the problem is, the invalid data value, and a note that the rental cannot proceed. For example, for an invalid movie ID number, you might say, "There is no movie with id: 13 - Cannot proceed with rental". You also want to include a WHEN OTHERS exception handler.

Compile and check your code. If you get a PROCEDURE CREATED WITH COMPILATION ERRORS message then type in SHOW ERRORS and look in your code for the line noted in the error messages (be sure to compile your code with the session command SET ECHO ON). Once you have a clean compile then your are ready to test.

Step 2: Testing the First Procedure

You will need to test for scenarios that will allow both a clean movie rental and test each exception. This means that you will need to run at least five test cases. One each for the following:

No movie for the ID supplied (use 13, 10, and 2 for the parameters).

No member for the ID supplied (use 10, 20, and 2 for the parameters).

No payment method for the ID supplied (use 10, 10, and 7 for the parameters).

A successful rental (use 5, 10, and 2 for the parameters).

No movie available for the ID supplied (use 5, 11, and 2 for the parameters). Since there is only one movie available for ID 5, you will get this exception.

Your output from the testing should look similar to (this would be the output for the first test above):
exec movie_rent_sp(13, 10, 2);

Output:

There is no movie with id: 13

Cannot proceed with rental

PL/SQL procedure successfully completed.

Be sure that when you have verified that everything works, you run your testing in a spools session and save the file to be turned in.

Step 3: Creating the Second Procedure

Your second procedure should be named MOVIE_RETURN_SP and should facilitate the process of checking a movie rental back in. For this procedure, you will only need to pass one piece of data to the procedure; the rental ID. You will need two user-defined exceptions; one for no rental record and one for already returned. You will be able to use several of the same techniques you used in the first procedure for your validation.

The following steps will help in setting up your code.

You will need to define only one parameter for the rental ID number. Make sure that it matches the data type of the associated column in the database table.

You will have several other variables that will need to be identified and defined. It might be easier to read through the rest of the specs before you start trying to define these (look for hints in the specifications).

You will need to define the two user-defined exceptions mentioned above.

You will need to validate the rental ID that is passed to the procedure. If it is not a valid one then raise the associated exception.

If it is valid then get the movie ID and check-in date from the mm_rental table.

Now, check the check-in date to make sure that it is NULL. If it is not then raise the associated exception.

If everything checks out then update the mm_rental table for the rental ID you have and use the SYSDATE function for the check-in date.

Now, you can update the quantity in the mm_movie table for the associated movie ID to reflect that the movie is back in stock.

Last, set up your exception section using appropriate error message text and data.

Compile and check your code. If you get a PROCEDURE CREATED WITH COMPILATION ERRORS message then type in SHOW ERRORS and look in your code for the line noted in the error messages (be sure to compile your code with the session command SET ECHO ON). Once you have a clean compile then your are ready to test.

Step 4: Testing the Second Procedure

You will need to test for scenarios that will allow both a clean rental return and test each exception. This means that you will need to run at least three test cases. One each for the following:

No rental for the ID supplied (use 20 for the parameter).

A successful rental return (use 1 for the parameter).

Try to return the same rental in Step 2.

You output from the testing should look similar to (this would be the output for the first test above):
exec movie_return_sp(20);

Output:

There is no rental record with id: 20

Cannot proceed with return

PL/SQL procedure successfully completed.

Be sure that when you have verified that everything works, you run your testing in a spools session and save the file to be turned in.

Step 5: Creating the Function

Your function should be named MOVIE_STOCK_SF and will be used to return a message telling the user whether a movie title is available or not based on the movie ID passed to the function. The exception handling that will be needed is for NO_DATA_FOUND but we are going to set it up as a RAISE_APPLICATION_ERROR.

The following steps will help in setting up your code.

You will need to define only one parameter for the movie ID number. Make sure that it matches the data type of the associated column in the database table. Also, since you will be returning a notification message, you will want to make sure your RETURN statement references a data type that can handle that (Hint: variable length data type).

You will have several other variables that will need to be identified and defined. It might be easier to read through the rest of the specs before you start trying to define these (look for hints in the specifications).

You will not be doing any validation so the first thing you need to do is retrieve the movie title and quantity available from the mm_movie table based on the ID passed to the function.

Now, you need to determine if any are available. IF the value in the quantity column is greater than zero then you will be returning a message saying something like "Star Wars is available: 0 on the shelf", ELSE if the value is zero then you should return a message saying something like "Star Wars is currently not available". Hint: A good way to return a test string is to assign it to a variable and then simply use the variable name in the RETURN clause.

Finally, set up your exception section to use a RAISE_APPLICATION_ERROR for the NO_DATA_FOUND exception handler. Assign an error number of -20001 to it and an error message that states there is no movie available for the ID (be sure to include the id in the message).
Compile and check your code. If you get a FUNCTION CREATED WITH COMPILATION ERRORS message then type in SHOW ERRORS and look in your code for the line noted in the error messages (be sure to compile your code with the session command SET ECHO ON). Once you have a clean compile then your are ready to test.

Step 6: Testing the Function

You will need to test for all three possible scenarios.

Test for a movie in stock using movie ID 11.

Test for a movie not in stock using movie ID 5 (from your tests of the second procedure above, the quantity should be 0).

Test for an invalid movie ID using movie ID 20.

For test number 2, you may need to manipulate the quantity amount in the database, which will be fine.

Reference no: EM13762355

Questions Cloud

How would you describe your chosen companys dividend policy : How would you describe your chosen company's dividend policy? Why do you believe this company chose the dividend policy they have in place?
Distinctly different kinds of speeches : Informing, persuading, and entertaining are three distinctly different kinds of speeches.
Process of breaking a large program down : The process of breaking a large program down into manageable pieces is known as top-down design or the _____.
Physical anthropologists examination : An archaeologist may look at how tools have changed through time, and what has caused that change.
Explain validate the movie id to make sure it is valid : Validate the movie ID to make sure it is valid. If not then raise the unknown movie exception. Validate the member ID to make sure one exists for that ID. If not then raise the unknown member exception.
Advantage of creating modular code : Which of the following is an advantage of creating modular code?
Write an essay on iagos evil-othello by shakespeare : Write an essay on Iagos Evil-Othello by Shakespeare. Iago several suggestions are like threads that make up a web that entangles Othello, bringing him and others to their tragic end.
Degrees in fahrenheit : They need a program that will convert Fahrenheit to Celsius. The user will enter the degrees in Fahrenheit and the program will give the results in Celsius.
A health care organization : Under what conditions is a flexible budget more effective than a forecast budget.

Reviews

Write a Review

 

Other Subject Questions & Answers

  Descriptive statistics for each of the four variables

read the motion picture industry case study and using this data set please provide a managerial report that includes

  Pre-employment testing can be an effective tool

Pre-employment testing can be an effective tool in the selection of qualified candidates. Testing can include, but is not limited to the following areas:

  The findings should be based on research including at

write a formal justification report to an organization making a recommendation to implement a particular product

  Explain what the word serious means if its a dramatic

explain what the word serious means if its a dramatic serious series tv show..words that could have different meanings

  Prepare a 2-3 page paper comparing three similar provisions

prepare a 2-3 page paper comparing three similar provisions in the u.s. constitution and the articles of confederation.

  Identify the conflicting obligations

In each case, identify the conflicting obligations and decide whether the action taken is morally right. Be sure to consider the requirement of proportion. This has to be 200 words or more and less than 10% plagiarized. Can you please list the sou..

  Art and science of corporate investment decisions

A firm’s net income is calculated as the difference in the revenues it recognizes for the period less the expenses it incurred in the process of generating those revenues.

  Printmaking, drawing, photography, or full-round sculpture

Write your paper by choosing and viewing from the following artwork: painting, printmaking, drawing, photography, or full-round sculpture. Selecting an art exhibit may be a challenge or it may be easy, depending on what you have available. However, e..

  What is a planetary nebula

What is a planetary nebula

  Any deception involved in the experiment is explained

Any deception involved in the experiment is explained to participants

  Medication for childhood disorder

Discuss the ethics of prescribing psychotropic medications to children. What guidelines would you use to decide whether or not to recommend such medications?

  Explain a recent interaction with friend or family

Write many sentences explaining a recent interaction with friend or family member about personal finance or credit cards. Recognize all pronouns utilized by italicizing them.

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