Question

-- Drop the tables if they existDROP TABLE REP CASCADE CONSTRAINTS;DROP TABLE CUSTOMER CASCADE CONSTRAINTS;DROP TABLE...

-- Drop the tables if they existDROP TABLE REP CASCADE CONSTRAINTS;DROP TABLE CUSTOMER CASCADE CONSTRAINTS;DROP TABLE ORDERS CASCADE CONSTRAINTS;DROP TABLE ITEM CASCADE CONSTRAINTS;DROP TABLE ORDER_LINE CASCADE CONSTRAINTS;-- You are to change CUSTOMER to CUSTOMERS for the Colonial database to avoid conflict with the CUSTOMER table in Tal.-- Create the tablesCREATE TABLE REP(REP_NUM CHAR(2) PRIMARY KEY,LAST_NAME CHAR(15),FIRST_NAME CHAR(15),STREET CHAR(15),CITY CHAR(15),STATE CHAR(2),POSTAL_CODE CHAR(5),COMMISSION DECIMAL(7,2),RATE DECIMAL(3,2) );CREATE TABLE CUSTOMER(CUSTOMER_NUM CHAR(3) PRIMARY KEY,CUSTOMER_NAME CHAR(35) NOT NULL,STREET CHAR(20),CITY CHAR(15),STATE CHAR(2),POSTAL_CODE CHAR(5),BALANCE DECIMAL(8,2),CREDIT_LIMIT DECIMAL(8,2),REP_NUM CHAR(2) );CREATE TABLE ORDERS(ORDER_NUM CHAR(5) PRIMARY KEY,ORDER_DATE DATE,CUSTOMER_NUM CHAR(3) );CREATE TABLE ITEM(ITEM_NUM CHAR(4) PRIMARY KEY,DESCRIPTION CHAR(30),ON_HAND DECIMAL(4,0),CATEGORY CHAR(3),STOREHOUSE CHAR(1),PRICE DECIMAL(6,2) );CREATE TABLE ORDER_LINE(ORDER_NUM CHAR(5),ITEM_NUM CHAR(4),NUM_ORDERED DECIMAL(3,0),QUOTED_PRICE DECIMAL(6,2),PRIMARY KEY (ORDER_NUM, ITEM_NUM) );

-- Note above how the primary key is created when it is a composite key (multiple attributes -- 2 in this case)-- You will need to do this in the Colonial database for one or more tables.

-- populate the tablesINSERT INTO REP VALUES('15','Campos','Rafael','724 Vinca Dr.','Grove','CA','90092',23457.50,0.06);INSERT INTO REP VALUES('30','Gradey','Megan','632 Liatris St.','Fullton','CA','90085',41317.00,0.08);INSERT INTO REP VALUES('45','Tian','Hui','1785 Tyler Ave.','Northfield','CA','90098',27789.25,0.06);INSERT INTO REP VALUES('60','Sefton','Janet','267 Oakley St.','Congaree','CA','90097',0.00,0.06);INSERT INTO CUSTOMER VALUES('126','Toys Galore','28 Laketon St.','Fullton','CA','90085',1210.25,7500.00,'15');INSERT INTO CUSTOMER VALUES('260','Brookings Direct','452 Columbus Dr.','Grove','CA','90092',575.00,10000.00,'30');INSERT INTO CUSTOMER VALUES('334','The Everything Shop','342 Magee St.','Congaree','CA','90097',2345.75,7500.00,'45');INSERT INTO CUSTOMER VALUES('386','Johnson''s Department Store','124 Main St.','Northfield','CA','90098',879.25,7500.00,'30');INSERT INTO CUSTOMER VALUES('440','Grove Historical Museum Store','3456 Central Ave.','Fullton','CA','90085',345.00,5000.00,'45');INSERT INTO CUSTOMER VALUES('502','Cards and More','167 Hale St.','Mesa','CA','90104',5025.75,5000.00,'15');INSERT INTO CUSTOMER VALUES('586','Almondton General Store','3345 Devon Ave.','Almondton','CA','90125',3456.75,15000.00,'45');INSERT INTO CUSTOMER VALUES('665','Cricket Gift Shop','372 Oxford St.','Grove','CA','90092',678.90,7500.00,'30');INSERT INTO CUSTOMER VALUES('713','Cress Store','12 Rising Sun Ave.','Congaree','CA','90097',4234.60,10000.00,'15');INSERT INTO CUSTOMER VALUES('796','Unique Gifts','786 Passmore St.','Northfield','CA','90098',124.75,7500.00,'45');INSERT INTO CUSTOMER VALUES('824','Kline''s','945 Gilham St.','Mesa','CA','90104',2475.99,15000.00,'30');INSERT INTO CUSTOMER VALUES('893','All Season Gifts','382 Wildwood Ave.','Fullton','CA','90085',935.75,7500.00,'15');INSERT INTO ORDERS VALUES ('51608','12-OCT-2015','126');INSERT INTO ORDERS VALUES ('51610','12-OCT-2015','334');

INSERT INTO ORDERS VALUES ('51613','13-OCT-2015','386');INSERT INTO ORDERS VALUES ('51614','13-OCT-2015','260');INSERT INTO ORDERS VALUES ('51617','15-OCT-2015','586');INSERT INTO ORDERS VALUES ('51619','15-OCT-2015','126');INSERT INTO ORDERS VALUES ('51623','15-OCT-2015','586');INSERT INTO ORDERS VALUES ('51625','16-OCT-2015','796');-- Note the CORRECT date format above: '16-OCT-2015'INSERT INTO ITEM VALUES('AH74','Patience',9.00,'GME','3',22.99);INSERT INTO ITEM VALUES('BR23','Skittles',21.00,'GME','2',29.99);INSERT INTO ITEM VALUES('CD33','Wood Block Set (48 piece)',36.00,'TOY','1',89.49);INSERT INTO ITEM VALUES('DL51','Classic Railway Set',12.00,'TOY','3',107.95);INSERT INTO ITEM VALUES('DR67','Giant Star Brain Teaser',24.00,'PZL','2',31.95);INSERT INTO ITEM VALUES('DW23','Mancala',40.00,'GME','3',50.00);INSERT INTO ITEM VALUES('FD11','Rocking Horse',8.00,'TOY','3',124.95);INSERT INTO ITEM VALUES('FH24','Puzzle Gift Set',65.00,'PZL','1',38.95);INSERT INTO ITEM VALUES('KA12','Cribbage Set',56.00,'GME','3',75.00);INSERT INTO ITEM VALUES('KD34','Pentominoes Brain Teaser',60.00,'PZL','2',14.95);INSERT INTO ITEM VALUES('KL78','Pick Up Sticks',110.00,'GME','1',10.95);INSERT INTO ITEM VALUES('MT03','Zauberkasten Brain Teaser',45.00,'PZL','1',45.79);INSERT INTO ITEM VALUES('NL89','Wood Block Set (62 piece)',32.00,'TOY','3',119.75);INSERT INTO ITEM VALUES('TR40','Tic Tac Toe',75.00,'GME','2',13.99);INSERT INTO ITEM VALUES('TW35','Fire Engine',30.00,'TOY','2',118.95);INSERT INTO ORDER_LINE VALUES ('51608','CD33',5.00,86.99);INSERT INTO ORDER_LINE VALUES ('51610','KL78',25.00,10.95);INSERT INTO ORDER_LINE VALUES ('51610','TR40',10.00,13.99);INSERT INTO ORDER_LINE VALUES ('51613','DL51',5.00,104.95);INSERT INTO ORDER_LINE VALUES ('51614','FD11',1.00,124.95);INSERT INTO ORDER_LINE VALUES ('51617','NL89',4.00,115.99);INSERT INTO ORDER_LINE VALUES ('51617','TW35',3.00,116.95);INSERT INTO ORDER_LINE VALUES ('51619','FD11',2.00,121.95);INSERT INTO ORDER_LINE VALUES ('51623','DR67',5.00,29.95);INSERT INTO ORDER_LINE VALUES ('51623','FH24',12.00,36.95);INSERT INTO ORDER_LINE VALUES ('51623','KD34',10.00,13.10);INSERT INTO ORDER_LINE VALUES ('51625','MT03',8.00,45.79);

PLEASE NOTE:  This project is to create and populate tables in Oracle using SQL.

Read the following instructions carefully.

This assignment is to be completed in Oracle. Be sure to read all the files in Module 1 before you get started.

SQL Project1: Part 1: You are required to do the following:

  • Connect to the server via remote terminal

  • Access Oracle

  • Run the script that will create the five tables from TAL Distributors database found in Chapter 3 of your SQL Guide.  

    • The script file to create the tables is attached here.
    • Be sure to read all the comments in the file (they start with a double dash --)

SQL Project1: Part 2: You are required to do the following:

  • Enter all of the TAL Distributors data found in Chapter 1 of your

  • SQL Guide. All of the data are found on pages 4, 5, and 6 of

  • the SQL Guide.

    • The script file to insert these data is attached here.

    • Be sure to read all the comments in the file (they start with a

    • double dash --)

SQL Project1: Part3: You are required to do the following:

  • Create the Five tables from Colonial Adventure Tours found in

  • Chapter 3 of your SQL Guide. The structure of the tables is found on pages 92 and 93 of the SQL Guide.

    • Be sure to enforce the primary key constraint on all tables.

  • COLONIAL:  Enter all of the Colonial Adventure Tours data found

in Chapter 1 of your SQL Guide. All of the data are found on pages 9 through 13 of the SQL Guide.

Homework Answers

Answer #1

Note:In insert statements above Date format is changed as per the instructions.

Output Screenshots:

Thank you have great Day...please do like...:)-

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Write a script to create the following tables with attributes as specified(SQL) Customer table with Customer’s...
Write a script to create the following tables with attributes as specified(SQL) Customer table with Customer’s id, name, address, city as varchar, customer’s date of birth as date type and zip code number where the customers id is the primary key in the table, name and date of birth are mandatory. Id has a 10-character limit, name, address and city have a 50-character limit, zip has a 5-character limit Product Table with Product id, description and finish as varchar, price...
-- Table construction (just 1 simplest possible way) CREATE TABLE PetType ( petTypeId VARCHAR(10) PRIMARY KEY,...
-- Table construction (just 1 simplest possible way) CREATE TABLE PetType ( petTypeId VARCHAR(10) PRIMARY KEY, animalType VARCHAR(20), breed VARCHAR(20) ); CREATE TABLE Owner ( ownerId VARCHAR(10) PRIMARY KEY, firstName VARCHAR(20), lastName VARCHAR(20) NOT NULL, homePhoneNumber VARCHAR(20), streetAddress VARCHAR(80), suburb VARCHAR(20), postcode VARCHAR(10) ); CREATE TABLE Pet ( petId VARCHAR(10) PRIMARY KEY, petName VARCHAR(20), sex CHAR(1) CHECK (sex IN ('M', 'F')), petTypeId VARCHAR(10) FOREIGN KEY REFERENCES PetType ); CREATE TABLE PetAndOwner ( ownerId VARCHAR(10), petId VARCHAR(10), PRIMARY KEY (ownerId, petId),...
Aggregation 1. List the following about history books: number of history books, the minimum price, maximum...
Aggregation 1. List the following about history books: number of history books, the minimum price, maximum price, and average sales. The format of output is: "Number" "Min Price" "Max Price" "Average Sale" 2. List the number of books and the average number of pages published by pub_id 01. 3. For each book type, list the the number of books and the average price. Sort the results by the number of books Functions 4. List the name(s) of the publisher(s) that...
Find the total number of employees and the total number of dependents for every department (the...
Find the total number of employees and the total number of dependents for every department (the number of dependents for a department is the sum of the number of dependents for each employee working for that department). Return the result as department name, total number of employees, and total number of dependents Based on the following table: -- drop tables DROP TABLE EMPLOYEE CASCADE CONSTRAINTS; DROP TABLE DEPARTMENT CASCADE CONSTRAINTS; DROP TABLE DEPT_LOCATIONS CASCADE CONSTRAINTS; DROP TABLE PROJECT CASCADE CONSTRAINTS;...
CREATE TABLE Customers (Customer# NUMBER(4), LastName VARCHAR2(10) NOT NULL, FirstName VARCHAR2(10) NOT NULL, Address VARCHAR2(20), City...
CREATE TABLE Customers (Customer# NUMBER(4), LastName VARCHAR2(10) NOT NULL, FirstName VARCHAR2(10) NOT NULL, Address VARCHAR2(20), City VARCHAR2(12), State VARCHAR2(2), Zip VARCHAR2(5), Referred NUMBER(4), Region CHAR(2), Email VARCHAR2(30), CONSTRAINT customers_customer#_pk PRIMARY KEY(customer#), CONSTRAINT customers_region_ck CHECK (region IN ('N', 'NW', 'NE', 'S', 'SE', 'SW', 'W', 'E')) ); CREATE TABLE Orders (Order# NUMBER(4), Customer# NUMBER(4), OrderDate DATE NOT NULL, ShipDate DATE, ShipStreet VARCHAR2(18), ShipCity VARCHAR2(15), ShipState VARCHAR2(2), ShipZip VARCHAR2(5), ShipCost NUMBER(4,2), CONSTRAINT orders_order#_pk PRIMARY KEY(order#), CONSTRAINT orders_customer#_fk FOREIGN KEY (customer#) REFERENCES customers(customer#)); In...
/* myCompany.SQL Introduction to SQL Script file for ORACLE DBMS This script file creates the following...
/* myCompany.SQL Introduction to SQL Script file for ORACLE DBMS This script file creates the following tables: VENDOR, PRODUCT, CUSTOMER, INVOICE, LINE EMPLOYEE and loads the default data rows */ set echo on; set serveroutput on; select systimestamp from dual; show user; ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-YYYY'; DROP TABLE LINE CASCADE CONSTRAINTS; DROP TABLE INVOICE CASCADE CONSTRAINTS; DROP TABLE CUSTOMER CASCADE CONSTRAINTS; DROP TABLE PRODUCT CASCADE CONSTRAINTS; DROP TABLE VENDOR CASCADE CONSTRAINTS; DROP TABLE EMPLOYEE CASCADE CONSTRAINTS; CREATE TABLE...
Here are SQL declarations for three tables R, S, and T: CREATE TABLE R(e INT PRIMARY...
Here are SQL declarations for three tables R, S, and T: CREATE TABLE R(e INT PRIMARY KEY, f INT); CREATE TABLE S(c INT PRIMARY KEY, d INT REFERENCES R(e) ON DELETE CASCADE); CREATE TABLE T(a INT PRIMARY KEY, b INT REFERENCES S(c) ON DELETE CASCADE); Suppose R(e,f) contains tuples (1,0), (2,4), (3,5), (4,3), and (5,7). Suppose S(c,d) contains tuples (1,5), (2,2), (3,3), (4,5), and (5,4). Suppose T(a,b) contains tuples (0,2), (1,2), (2,3), (3,4), and (4,4). As a result of the...
SQL Write the queries necessary to obtain the required information 1) Use sub query and “in”...
SQL Write the queries necessary to obtain the required information 1) Use sub query and “in” keyword to print the salesreps (ids) who have taken order for the companies ‘Zetacorp’ or ‘JCP Inc.’ . Duplicate rows are not allowed 2) Use sub query to find the id and the name of every sales rep that represents at least one customer with a credit limit of greater than $5000. 3) Use sub query and keyword “exists” to list the id and...
CREATE TABLE Orders (Order# NUMBER(4), Customer# NUMBER(4), OrderDate DATE NOT NULL, ShipDate DATE, ShipStreet VARCHAR2(18), ShipCity...
CREATE TABLE Orders (Order# NUMBER(4), Customer# NUMBER(4), OrderDate DATE NOT NULL, ShipDate DATE, ShipStreet VARCHAR2(18), ShipCity VARCHAR2(15), ShipState VARCHAR2(2), ShipZip VARCHAR2(5), ShipCost NUMBER(4,2), CONSTRAINT orders_order#_pk PRIMARY KEY(order#), CONSTRAINT orders_customer#_fk FOREIGN KEY (customer#) REFERENCES customers(customer#)); INSERT INTO ORDERS VALUES (1000,1005,TO_DATE('31-MAR-09','DD-MON-YY'),TO_DATE('02-APR-09','DD-MON-YY'),'1201 ORANGE AVE', 'SEATTLE', 'WA', '98114' , 2.00); INSERT INTO ORDERS VALUES (1001,1010,TO_DATE('31-MAR-09','DD-MON-YY'),TO_DATE('01-APR-09','DD-MON-YY'), '114 EAST SAVANNAH', 'ATLANTA', 'GA', '30314', 3.00); INSERT INTO ORDERS VALUES (1002,1011,TO_DATE('31-MAR-09','DD-MON-YY'),TO_DATE('01-APR-09','DD-MON-YY'),'58 TILA CIRCLE', 'CHICAGO', 'IL', '60605', 3.00); INSERT INTO ORDERS VALUES (1003,1001,TO_DATE('01-APR-09','DD-MON-YY'),TO_DATE('01-APR-09','DD-MON-YY'),'958 MAGNOLIA LANE', 'EASTPOINT', 'FL', '32328', 4.00);...
Question 1: Group by and Aggregates: Write SQL statements to answer the following questions using Assignment...
Question 1: Group by and Aggregates: Write SQL statements to answer the following questions using Assignment 4’s schema (Customer-Invoice-Line-Product-Vendor). Make sure that your SQL script runs without any errors. Submit your answers in a .SQL file. 1 (2 Points) - Find the count of distinctvendors thatsupplied products that are priced lowerthan 185? 2 (2 Points) - For each vendor, find their product that has the lowest product quantity. Your output should include vendor code, vendor name, product description and product...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT