Your Perfect Assignment is Just a Click Away

We Write Custom Academic Papers

100% Original, Plagiarism Free, Customized to your instructions!

glass
pen
clip
papers
heaphones

you don’t have to submit anything other than the answers to the questions in Step 3 (with screen shot), 6 (with screen shot) and 8 (with screen shot).

1) Connect to your TitanAuto pluggable database and execute the following commands to build the tables we will need for this exercise:

Create TABLE Brands (
BRAND_ID Number,
BRAND_NAME VARCHAR2(50));

INSERT INTO brands (BRAND_ID, BRAND_NAME) VALUES (1,’Audi’);
INSERT INTO brands (BRAND_ID, BRAND_NAME) VALUES (2,’BMW’);
INSERT INTO brands (BRAND_ID, BRAND_NAME) VALUES (3,’Ford’);
INSERT INTO brands (BRAND_ID, BRAND_NAME) VALUES (4,’Honda’);
INSERT INTO brands (BRAND_ID, BRAND_NAME) VALUES (5,’Toyota’);

Create TABLE cars (
CAR_ID Number,
CAR_NAME VARCHAR2(50),
BRAND_ID Number);

INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (1, ‘Audi R8 Coupe’, 1);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (2, ‘Audi Q2’, 1);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (3, ‘Audi S1’, 1);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (4, ‘BMW 2-Series Cabrio’, 2);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (5, ‘BMW i8’, 2);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (6, ‘Ford Edge’, 3);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (7, ‘Ford Mustang Fastback’, 3);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (8, ‘Honda S2000’, 4);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (9, ‘Honda Legend’, 4);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (10, ‘Toyota GT86’, 5);
INSERT INTO cars (CAR_ID, CAR_NAME, BRAND_ID) VALUES (11, ‘Toyota C-HR’, 5);

2) Create a view called AUDI_CARS that Selects all fields from the CARS table and returns only the Audi cars

3) Select * from AUDI_CARS.

What kind of cars are listed in the AUDI_CARS view (there should be only 1 kind). Attach a screen shot.

4) INSERT some data into the AUDI_CARS view:
car_id = 12 car_name = ‘BMW 1-series Coupe’, brand_id = 2

You are able to update the CARS table by updating the AUDI_CARS view

5) UPDATE the AUDI_CARS view and set
car_name = ‘BMW 1-series Coupe’, brand_id = 2
WHERE card_id = 3

6) Do a select * from AUDI_CARS

Attach a screen shot. What is wrong with this view now?

7) Now, create a view called FORD_CARS that Selects all fields from the CARS table and returns only Ford cars. In there WHERE clause, add WITH CHECK OPTION.

8) Once the view is created, Try the following INSERT statement

INSERT INTO ford_cars(car_name, brand_id) VALUES(‘Audi RS6 Avant’, 1);

Attach a screen shot

What Happened?

Why?

Order Solution Now

Our Service Charter

1. Professional & Expert Writers: Studymonk only hires the best. Our writers are specially selected and recruited, after which they undergo further training to perfect their skills for specialization purposes. Moreover, our writers are holders of masters and Ph.D. degrees. They have impressive academic records, besides being native English speakers.

2. Top Quality Papers: Our customers are always guaranteed papers that exceed their expectations. All our writers have +5 years of experience. This implies that all papers are written by individuals who are experts in their fields. In addition, the quality team reviews all the papers before sending them to the customers.

3. Plagiarism-Free Papers: All papers provided by Studymonk are written from scratch. Appropriate referencing and citation of key information are followed. Plagiarism checkers are used by the Quality assurance team and our editors just to double-check that there are no instances of plagiarism.

4. Timely Delivery: Time wasted is equivalent to a failed dedication and commitment. Studymonk is known for timely delivery of any pending customer orders. Customers are well informed of the progress of their papers to ensure they keep track of what the writer is providing before the final draft is sent for grading.

5. Affordable Prices: Our prices are fairly structured to fit all groups. Any customer willing to place their assignments with us can do so at very affordable prices. In addition, our customers enjoy regular discounts and bonuses.

6. 24/7 Customer Support: At Studymonk, we have put in place a team of experts who answer all customer inquiries promptly. The best part is the ever-availability of the team. Customers can make inquiries anytime.