What could the mds that violate 4nf be

Assignment Help PL-SQL Programming
Reference no: EM13313310

Problem I:
1- Prove that any relation schema with two attributes is in BCNF.
2- R(A, B, C) is a relation in BCNF. A is one of the keys of R. R may have other keys.
Prove that R is in 4NF.

(Hint: Assume that R is not in 4NF. What could the MDs that violate 4NF be?

For each such MD, use what you know about the relation to show that this MD cannot violate 4NF.)

3- Consider the universal relation R = {A, B, C, D, E, F, G, H, I} and the set of functional dependencies
F = { {A, B} -> {C}, {A} -> {D, E}, {B} -> {F}, {F} ->{G, H}, {D} -> {I, J} }.

What is the key for R? Decompose R into 2NF, then 3NF relations.


Problem II:

In this problem, we will consider a movie database with three tables:
MovieDirector(title, director, year)
MovieCast(title, actor, salary)
MovieReview(title, reviewer, score)

All attributes are strings except year, salary, and score, which are integers.

A- Write the following queries in SQL. To save you some writing, you may use the abbreviated schema MD(T,D,Y), MC(T,A,S), and MR(T,R,S). Write your queries so that the final answers will never include duplicates, but add the keyword DISTINCT only in cases where duplicates would otherwise be produced.

(a) Using subqueries in WHERE, find the directors who have also acted. Sort their names alphabetically.
(b) Without using subqueries in WHERE, find the actors who have never directed.
(c) Find the titles of all movies in the 1960's starring both Dustin Hoffman and Anne Bancroft.
(d) Without using EXCEPT, find the actors who starred in every movie directed by Kurosawa.
(e) Using SQL aggregates, find the titles of the movies with at least two reviews.
(f) Same as (e), but use subqueries in WHERE instead of aggregates.
(g) Same as (e), but do not use subqueries in WHERE or aggregates.
(h) Using SQL aggregates, find the titles of the movies with exactly one review.
(i) Same as (h), but do not use aggregates.
(j) For each reviewer, find the average scores of all his/her reviews. However, do not list reviewers who have given out scores less than 1.
(k) Let's define the rating of a movie to be the average score given to this movie by reviewers. Find title, rating, and year of production for each movie. Movies with higher ratings should be listed first, and among the movies with the same rating, newer movies should be listed first.
(l) Let's define the rating of a director to be the average rating of all his/her movies. Find the names and ratings of all directors who have directed movies starring Al Pacino.

(m) Is the following a correct solution for (l)? Why?

SELECT director, AVG(score)
FROM MovieDirector d, MovieReview r
WHERE d.title IN (SELECT title FROM MovieCast WHERE actor = 'Al Pacino')
AND d.title = r.title;
(n) For each actor, find the total salary he/she earned each year during 1995-1999.

B. Consider the same movie database above. Write SQL data modification statements to complete the following tasks.
(a) If a movie spends a total of more than $10,000,000 on its cast, put in a review by its director with a score of 10.
(b) For each movie, remove one of its reviews with the highest score. If this movie has more than one reviews with the same highest score, remove only one of them. If this movie has only one review, do not remove the review.

Reference no: EM13313310

Questions Cloud

Explain what''s the compound structure : Does (CH3CH2)2C=CHCH2CH3 have any cis/trans isomers and if so what are they? Also what's the compound structure?
Marketing business-to-business : Marketing business-to-business
Determine the nominal flextural strength of the section : a rectangular beam with a width of a 8 in. an effective depth of 10 in., and a total depth of 12 in., is reinforced with a single fiberglass reinforcing bar that has a cross sectional area of 0.45 in^2.
Assignment for bmw : Assignment for bmw
What could the mds that violate 4nf be : Let's define the rating of a director to be the average rating of all his/her movies. Find the names and ratings of all directors who have directed movies starring Al Pacino.
Determine what is the coefficient of permeability : An aquifer is 45 meters deep and has a well that pumps water at 850 cubic meters per day. One observation well is located 45 meters away and has a water surface that is 44.35 meters above the bottom of the aquifer.
Explain what is the ph of 0.191 mol/l ch3cooh(aq) : Acetic acid, CH3COOH, is a weak monoprotic acid (pKa=4.74 at 25oC). What is the pH of 0.191 mol/L CH3COOH(aq) at 25oC
What is the concentration of bod remaining after 3 days : A 20 cubic meter tank contains ultimate BOD at a concentration of 550 mg/L. If the BOD reaction rate constant is -0.42/day, what is the concentration of BOD remaining after 3 days
Testing to assess the worth of a new windows program : Testing to assess the worth of a new Windows program

Reviews

Write a Review

PL-SQL Programming Questions & Answers

  Write a xquery which returns all concert titles

Write a XQuery which returns all concert titles whose type is chamber orchestra where average ticket price is at least $50.

  Select statement to return one row

Write a SELECT statement that returns one row for each general ledger account number which contains three columns.

  Write a script that uses two variables

Write a script that uses two variables to store (1) the count of all of the products in the Products table and (2) the average list price for those products. If the product count is greater than or equal to

  Create student sorting table

Student.txt in the attachment contains the roster of a class. Each student object has the following fields: student id, last name, first name, academic level.Create a RosterClass to store the student database in vector.

  How does the order of joins in an sql statement

How does the order of joins in an SQL statement affect the performance of the join and what can the DBA do to determine the preferred order of joins for an SQL statement that includes the join of at least three tables?

  Sql statement which select names and owners of great danes

Write SQL statement which would select each of the following: names and owners of all Great Danes and all attributes of poodles whose balance is no greater than $50.

  Write queries in sql if employee works on every project

Write the following queries in SQL: If an employee works on every project located in Houston, then list the employees social security number and name.

  Relational schema of a firm database - write a sql query

Display the vendor ID and vendor name of the items whose item quantity is the largest and display the item ID and item quantity of all items whoseitem quantity is less than the average quantity. Also display the average quantity

  Write down name of actors in ascending order

Write down actors (or actress, your choice, but not both) who have won at least two (2) Academy Awards for best actor/actress. Provide the actor name, movie title & year. Order the result by actor name."

  Update stock levels when the order is cancelled

Execute queries to confirm that the basket order status and product stock levels have been appropriately modified by the trigger - the trigger needs to fire when a new status record is added to the BB_BASKETSTATUS table and when the IDSTAGE col..

  Business transaction that involves multiple tables

Write a business transaction that involves multiple tables and implement it using PL/SQL. Use at least one Function or Procedure in your code. The transaction may retrieve data from the database and display the result, or it may insert/update data in..

  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)

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