Solved-This exercise is based on the Freebase.com celebrities data collected–SOLUTION

$30.00 $19.00

Submit your answers under the assignments tab on conneX. Answers must be well formatted and legible or they will not be marked. Question 1 [22 marks] This exercise is based on the Freebase.com celebrities data collected by the authors of the book Programming the Semantic Web. The tables are as follows: Albums(title) MovieTitles(title) Celebs(name) StarredIn(celeb,…

You’ll get a: . zip file solution

 

 
Categorys:
Tags:

Description

5/5 – (2 votes)

Submit your answers under the assignments tab on conneX. Answers must be well formatted and legible or they will not be marked.

Question 1 [22 marks]

This exercise is based on the Freebase.com celebrities data collected by the authors of the book Programming the Semantic Web. The tables are as follows:

Albums(title)

MovieTitles(title)

Celebs(name)

StarredIn(celeb, movie)

Released(celeb, album)

Relationships(celeb1, celeb2, started, ended)

Enemies(celeb1, celeb2)

To create the tables in Oracle use the statements in the script celebsCreate.sql. To load the data the quick-and-easy way: execute the statements in celebsStudents-IfOracleUVICused.sql (this script will copy the data from my account in Oracle to your tables). The longer but more-useful-later-in-life way is to:

  1. Create a new connection for at les in DBeaver.

  1. Make the connection point to a folder with the comma-separated-values (CSV) les (unzip celebs.zip to get the les).

  1. Go to the oracle connection and right click to import the data from at les. (I will let you gure out the details).

Write SQL queries to answer the following questions. Your answer should contain your SQL query and the resulting output. (2 points each)

Find the movies where both Tom Cruise and Penelope Cruz have starred together. Find all the co-stars of Nicolas Cage.

Find the movies where Tom Cruise co-starred with a celebrity he is (or has been) in a relationship with. The result should be (costar, movie) pairs. Hint. \Relation-ships” is symmetric (i.e. for each (celeb1, celeb2) pair, the inverse pair, (celeb2, celeb1) has also been inserted into the table).

1

Find the movies where a celebrity co-starred with another celebrity he/she is (or has been) in relationship with. The result should be (celeb1, celeb2, movie) triples.

Find how many movies each celebrity has starred in. Order the results by the number of movies (in descending order). Show only the celebrities who have starred in at least 10 movies.

Find the celebrities that have been in relationship with the same celebrity. The result should be (celeb1, celeb2, celeb3) triples, meaning that celeb1 and celeb2 have been in relationship with celeb3.

For each pair of enemies give the number of movies each has starred in. The result should be a set of (celeb1, celeb2, n1, n2) quadruples, where n1 and n2 are the number of movies that celeb1 and celeb2 have starred in, respectively. Observe that there might be celebrities with zero movies they have starred in. Hint. Create rst a virtual view celebMovieCounts that gives for each celebrity the number of movies he/she has starred in.

Find how many albums each celebrity has released. Order the results by the number of albums (in descending order). Show only the celebrities who have released at least 2 albums.

Find those celebrity that have starred in some movie and have released some album. For each celebrity that has both starred in some movie and released some album give the numbers of movies and albums he/she has starred in and released, respectively. The result should be a set of (celeb, number of movies, number of albums)

triples.

Find the earliest and the latest relationship (w.r.t the start date) recorded in this database. Hint. This needs two (similar) queries.

2