Sql script-creating the database and inserting data

Assignment Help PL-SQL Programming
Reference no: EM13169897

CONSIDER THE FOLLOWING SET OF DATABASE TABLES.

The diagram shows a database made up of 6 tables with all primary keys underlined. Please take note of foreign keys (most of them carry the same names as the corresponding primary keys they reference):

1933_Creating the database and inserting data.png

CUS_CODE in INVOICE, INV_NUMBER & P_CODE in LINE, and V_CODE in PRODUCT. The only exception to the naming convention is the EMP_MGR foreign key in EMPLOYEE which references the EMPLOYEE table in a recursive relationship.

- In addition to the above six tables, the script creates two tables V (default vendor table data) and P (default product table data). The only purpose for tables V and P is to demonstrate bulk insert - i.e. how to copy data from one table to another. E.g., to copy all records from table V to Vendor we issue the following: INSERT INTO VENDOR (SELECT * FROM V).

- Notice how I didn't include a FOREIGN KEY constraint in EMPLOYEE to reference itself (in order to implement the recursive relationship manages) because we still have not yet created the table. This has to be done separately as shown below AFTER creating the EMPLOYEE table: ALTER TABLE EMPLOYEE ADD FOREIGN KEY (EMP_MGR) REFERENCES EMPLOYEE;

I. Part 1: Understanding the SQL script, creating the database and inserting data

1. Double-click on the myCompany.SQL script file which will automatically put a copy of the script in the command input sub-window of SQL Developer. [or go into SQL Developer and do a File -> open to open it that way if necessary]

2. Go through the file and make sure you understand every single line of code in it before you proceed.

3. When done, press the Run Script (NOT the Run Statement) button in SQL Developer and you should notice the output of all commands appear sequentially in the output area.

II. Part 2: Writing SQL SELECT statements (one SQL statement per problem):

1. Display all product information for products that contain the string ‘saw' in their description.

2. Display all product information for products currently selling for less than $20.00 and which have more than 100 units in stock (recorded in attribute P_QOH or quantity on hand).

3. Display all product information for products currently selling for less than $20.00 or which have more than 100 units in stock (recorded in attribute P_QOH or quantity on hand).

4. Display the product code, description and price for products provided by vendor 21344.

5. Display the product code, description, price and price after discount (a computed column that uses the P_PRICE and P_DISCOUNT (a percent discount) --- name the computed column NewPrice) for products for which no vendor is specified in table PRODUCT.

6. Display the product code, product description and vendor name for products provided by vendors located in the state of TN.

7. Display the full names of employees who manage other employees, ordered by last name.

8. Display the count of distinct products ordered so far by customers (i.e. exist in table LINE).

9. For every manager, display the manager employee code along with the total number of employees s/he manages.

10. Display the product description, the full customer name and the customer balance for products ordered by customers having a customer balance between $100.00 and $500.00 (inclusive of both). Order by customer last name, then first name, then initial.

11. For every invoice, display the invoice number and the total dollar amount for all products purchased in the invoice, ordered by invoice number in descending order.

12. For every invoice, display the invoice number, invoice date and the total dollar amount for all products purchased in the invoice, ordered by invoice number in descending order and then by invoice date in ascending order.

III. Part 3: Creating an SQL VIEW:

13. Create an SQL view called VENDOR_PRODUCTS_TOTALS that shows the vendor name, vendor code and the total number of products provided by the vendor but only for vendors providing two or more products. When done, issue a select * from VENDOR_PRODUCTS_TOTALS statement to display the contents of view VENDOR_PRODUCTS_TOTALS and include them in your report.

IV. Part 4: Writing UPDATE and DELETE SQL statements:

PS: if you ever need to UNDO changes made to the database by an UPDATE or DELETE statement, issue command rollback in the command input sub-window of SQL Developer.

14. Start by issuing a select * from product statement. Copy the results into your report. Then, create and run an SQL update statement which changes the P_DISCOUNT to 0.03 percent for all products that currently have a discount of 0. Finally issue a select * from product statement after the update and copy the results into your report. This will show you the change produced by your update statement.

15. Start by issuing a select * from product statement. Copy the results into your report. Then, create an SQL update statement which doubles the P_DISCOUNT for all products provided by vendors in TN or FL. Finally issue a select * from product statement after the update and copy the results into your report.

16. Start by issuing a select * from LINE statement. Copy the results into your report. Then, create an SQL delete statement to delete invoice lines that include 2 or more units of product code ‘23109-HB'. Finally issue a select * from LINE statement after the delete and copy the results into your report. This should show you the change produced by your delete statement.

Reference no: EM13169897

Questions Cloud

Find the temperature of the water : A mixture of 4.0 mol of H2 and 2.0 mol of O2 is placed in a sealed evacuated container made of a perfect insulating material at 27C. The mixture is ignited with a spark and it reacts to form liquid water. Find the temperature of the water.
What is the molarity of the stock solution of luminol : the forensic technician at a crime scene has just prepared a luminol stock solution by adding 11.0 of luminol to creating a solution with a total volume of 75.0 . What is the molarity of the stock solution of luminol?
Which of the following pairs has about same atomic radius : Which of the following pairs has about the same atomic radius?
What is the temperature rise : The molar heat of combustion of methanol (molar mass = 32.0g/mol) is -757kJ/mol. If 2.00 g of methanol is placed in a bomb calorimeter with a heat capacity of 6.50 kJ/degree C what is the temperature rise when the sample is combusted?
Sql script-creating the database and inserting data : Understanding the SQL script, creating the database and inserting data and display all product information for products that contain the string ‘saw' in their description.
The female vote : "The Female Vote" Women have had the right to vote in this country for less than one hundred (100) years - just since 1920. Much has been written about the power of "the female block" and national candidates can win or lose based on their appeal to t..
Why does absorbance vs concentration calibration curve need : Why does absorbance vs concentration calibration curve need not pass through origin (0,0) looking at beer lambert law?
What ions will the following elements form : what ions will the following elements form?
Why does this produce a lightheaded feeling : When runners or other athletes practice at high altitudes pressure is reduced. What then will be the effect on the [O2] in their blood? Why does this produce a lightheaded feeling?

Reviews

Write a Review

PL-SQL Programming Questions & Answers

  Display all the lastnames from the customers table

Display all the LastNames from the Customers table and any associated OrdersIDs from the Orders Table. Show the LastName even if they do not have any associated orders. Order the results by LastName in ascending order.

  Script that creates and calls a function

Write a script that creates and calls a function named fnItemTotal that calculates the total amount of an item in the OrderItems table (discount price multiplied by quantity)

  Strengths and weaknesses of three dbms software

Research Report around 800 words strengths and weaknesses of three DBMS software packages for utilization as a company-wide customer information database. Please compare Microsoft Access, Microsoft SQL Server, and Oracle.

  Write sql statement-display major of student-no duplications

Write a SQL statement to display the Major of the student with no duplications. Write a SQL statement to display the First and Last name of students who live in the Zip code 88888.

  Write sql statement to create view

Write a SQL Statement to create a View called vwEmployeeTerritories that will do the following: Return all Employees and their Territories (use INNER JOIN).

  Run the lab_03_01.sql script

Run the lab_03_01.sql script in the attached file to create the SAL_HISTORY table. Display the structure of the SAL_HISTORY table.

  How to select the primary key

How to select the primary key from the candidate keys? How do foreign keys relate to candidate keys? provide examples from either your workplace or class assignments

  Convert the er/eer model

To represent a problem description given in natural language as an (Enhanced) Entity -Relationship model; to convert the ER/EER model into a relational data model;

  Query that uses cube operator to return lineitemsum

Write summary query which uses CUBE operator to return LineItemSum (which is the sum of InvoiceLineItemAmount) group by Account(an alias for AccountDesciption).

  An er diagram for the system

An ER diagram for the system. Show all entities, relationships, cardinalities and optionalities. Also, include all intersection entities. You must use the Finkelstein methodology as per the study book and tutorials.

  Query to show customers were missing for existing orders

As DBA, your manager called a meeting and asked why there are so many orders for customers that don't exist in the customer table. Write query which would shows which customers were missing for existing orders. Use a join or a subquery.

  Write pl-sql procedures and functions

Write PL/SQL procedures and functions to populate and query that database

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