CSE511 – Solved

$ 24.99
Category:

Description

CSE 511: Data Processing at Scale

Assignment 1: Create a Movie Database
Purpose
You have learned how to design a movie recommendation database. The assignment will give you an opportunity to create such a database from scratch and build applications on top of this database.

Objectives
Learners will be able to:
● Create simple tables in a database with the appropriate datatypes for the columns.
● Recognize how to add rows to a table once it’s been created.
● Produce relationship tables to link two or more tables.
● Distinguishing the use of foreign keys, primary keys, and other constraints.
Technology Requirements
● PostgreSQL 10
Assignment Description
In this database, a movie has two attributes: id, title. A possible movie record is as follows: 54796, 2 Days in Paris (2007).
A user can give a 5-star scale rating (0-5) to a movie. For instance, User (ID 4) gave 4 stars to the movie “The GodFather”. A user can only rate a movie once. The database needs to log each rating operation. The database should not allow any out-of-range movie ratings.
Please review the videos and additional details regarding Assignment 1 before beginning. These are located in your course Welcome and Start Here section.
● Assignment 1: Create a Movie Recommendation Database Introduction Video
● Assignment 1: Create Movie Recommendation Database Submission and Feedback Video
● Assignment 1: Submission Test Case and Trouble Shooting
Directions
Based on the movie database design, the movie database includes multiple tables. For this assignment, you need to create seven tables: users, movies, taginfo, genres, ratings, tags, hasagenre. Then load the corresponding data into the tables.

a. users: userid (int, primary key), name (text)
b. movies: movieid (integer, primary key), title (text)
c. taginfo: tagid (int, primary key), content (text)
d. genres: genreid (integer, primary key), name (text)
e. ratings: userid (int, foreign key), movieid (int, foreign key), rating (numeric), timestamp
g. hasagenre: movieid (int, foreign key), genreid (int, foreign key)
2. The requirement only tells you the name and data type of each attribute in each table. You need to figure out the primary keys, foreign keys, constraints or other necessary settings for the database by yourself. The key information in the requirement is just a skeleton and not complete; attributes can be primary keys and foreign keys at the same time.
Test Data:
We provide some test data for you to try. The delimiter of all files is “%”. Note that the grading system will use more test data and test cases to try your SQL scripts.
Data link:
https://github.com/jiayuasu/Coursera-ASU-Database/tree/master/course1/assignment1/exampleinput
To download the data:
1. Go to the file you want to download.
2. Click it to view the contents within the GitHub UI.
3. In the top right, right-click the “Raw” button.

Assignment Tips:
1. All table names and attribute names must be in lowercase letters and match the specification.
2. You can use COPY FROM / INSERT to load data to test your tables but don’t include the test data in the submission. Information on test data is provided in the Test Data section below.
Submission Directions for Assignment Deliverables
Submit a single plain text file “solution.sql”. This file should contain the SQL scripts for creating the seven tables.
When you are ready to submit:
1. Go to “Programming Assignment: Assignment 1: Create Movie Recommendation Database”.
3. Click on “Create submission.”
4. Upload one file for the assignment and click “Submit.”
Test Cases:
Upon submission the autograder will test your code against the following test cases:
● TEST CASE 1: Insert normal data
● TEST CASE 2: Insert non-exist foreign key
● TEST CASE 3: Insert duplicate rating
● TEST CASE 4: Insert a hasagenre record that contains wrong genre id
● TEST CASE 5: Insert a rating larger than 5
Please review additional information provided in the the Assignment 1: Submission Test Case and Troubleshooting page in the Welcome and Start Here section.
Evaluation
There are five test cases for a total of 1 point, so each test case is worth 0.2 points. If your .sql fails, you will see the corresponding .sql error logs that indicate where the error occurred. In the end, if the submission runs correctly, you will see feedback “You passed 5/5 tests.”
The test cases are executed in a simultaneous manner. If you pass any 2 of the 5 test cases, you would receive 40% of the total marks.
Learner Checklist
Prior to submitting, read through the Learner Checklist to ensure you are ready to submit your best work.
Did you title your file correctly and convert it into a single .sql file?
Did you answer all of the questions to the best of your ability?
Did you make sure your answers directly address the prompt(s) in an organized manner that is easy to follow?
Did you proofread your work?

Reviews

There are no reviews yet.

Be the first to review “CSE511 – Solved”

Your email address will not be published. Required fields are marked *