ITSE 2309 – Database Programming: Oracle Lab 5 – Data Manipulation and Transaction Control Solved

35.00 $

Category:

Description

5/5 - (2 votes)

To perform the following assignments, refer to the tables created in the JLDB_Build_5.sql script.

  1. Add a new row in the ORDERS table with the following data: Order# = 1021, Customer# = 1009, and Order date = July 20, 2017.

 

  1. Modify the zip code on order 1017 to 33222.

 

  1. Save the changes permanently to the database.

 

  1. Add a new row in the ORDERS table with the following data: Order# = 1022, Customer# = 2000, and Order date = August 6, 2009. Describe the error raised and what caused the error.

 

  1. Add a new row in the ORDERS table with the following data: Order# = 1023 and Customer# = 1009. Describe the error raised and what caused the error.

 

  1. Create a script using substitution variables that allows a user to set a new cost amount for a book based on the ISBN.

 

  1. Execute the script and set the following values: isbn = 1059831198 and cost = $20.00.

 

  1. Currently, the contents of the Category column in the BOOKS table are the actual name for each category. This structure presents a problem if one user enters COMPUTER for the Computer category and another user enters COMPUTERS. To avoid this and other problems that might occur, the database designers have decided to create a CATEGORY table containing a code and description for each category. The structure for the CATEGORY table should be as follows:

 

 

 

 

 

  • Create the CATEGORY table and populate it with the given data below. Save the changes permanently.
  • Add a column to the BOOKS table called Catcode.
  • Add a FOREIGN KEY constraint that requires all category codes entered in the BOOKS table to already exist in the CATEGORY table. Set the Catcode values for the existing rows in the BOOKS table, based on each book’s current Category value.
  • Verify that the correct categories have been assigned in the BOOKS table, and save the changes permanently.
  • Delete the Category column from the BOOKS table.

 

The data for the CATEGORY table is as follows:

 

 

 

 

Upload only the SQL Statements to Blackboard.

 

  • Lab5-21ewhd.zip