Write script that creates and calls a stored procedure


Problem

I. Write script that creates and calls a stored procedure named insert_category. First, code a statement that creates a procedure that adds a new row to the Categories table. To do that, this procedure should have one parameter for the category name. Include exception handling block.

Code at least two CALL statements that test this procedure. (Note that this table doesn't allow duplicate category names.)

II. Write script that creates and calls a stored function named discount_price that calculates the discount price of an item in the Order_Items table (discount amount subtracted from item price). To do that, this function should accept one parameter for the item ID, and it should return the value of the discount price for that item.

Code a SELECT statement that tests this function.

III. Create trigger named products_before_update that checks the new value for the discount_percent column of the Products table. This trigger should raise an appropriate error if the discount percent is greater than 100 or less than 0.

If the new discount percent is between 0 and 1, this trigger should modify the new discount percent by multiplying it by 100. That way, a discount percent of .2 becomes 20.

Test this trigger with an appropriate UPDATE statement.

IV. Create trigger named products_before_insert that inserts the current date for the date_added column of the Products table if the value for that column is null.

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: Write script that creates and calls a stored procedure
Reference No:- TGS03285565

Expected delivery within 24 Hours