Question
HW6 Covers Chapters 9 &10 Chapter 9: How to design a database Exercises 1. Draw a database diagram for the script file named create_mgs_tables.sql thats
HW6 Covers Chapters 9 &10
Chapter 9: How to design a database
Exercises
1. Draw a database diagram for the script file named create_mgs_tables.sql thats in the mgs_ex_starts folder.
2. Draw a database diagram for a database that stores information about the downloads that users make.
Each user must have an email address, first name, and last name.
Each user can have one or more downloads.
Each download must have a filename and download date/time.
Each product can be related to one or more downloads.
Each product must have a name.
Chapter 10
How to create tables, sequences, and indexes
Exercises
1. Write a script that adds an index to the order_date column in the Orders table in the mgs schema.
2. Write a script that implements the following design:
In the Downloads table, the user_id and product_id columns are the foreign keys.
Create these tables in the ex schema.
Create the sequences for the user_id, download_id, and product_id columns.
Include a PL/SQL script to drop the table or sequence if it already exists.
Include any indexes that you think are necessary.
3. Write a script that adds rows to the database that you created in exercise 2.
Add two rows to the Users and Products tables.
Add three rows to the Downloads table: one row for user 1 and product 2; one row for user 2 and product 1; and one row for user 2 and product 2. Use the SYSDATE function to insert the current date into the download_date column.
Use the sequences created in the previous exercise to get the values for the user_id, download_id, and product_id columns.
Write a SELECT statement that joins the three tables and retrieves the data from these tables like this:
Sort the results by the email address in descending sequence and the product name in ascending sequence.
4. Write an ALTER TABLE statement that adds two new columns to the Products table created in exercise 2.
Add one column for product price that provides for three digits to the left of the decimal point and two to the right. This column should have a default value of 9.99.
Add one column for the date and time that the product was added to the database.
5. Write an ALTER TABLE statement that modifies the Users table created in exercise 2 so the first_name column can store NULL values and can store a maximum of 20 characters.
Code an UPDATE statement that inserts a NULL value into this column. It should work since this column now allows NULL values.
Code another UPDATE statement that attempts to insert a first name thats longer than 20 characters. It should fail due to the length of the column.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started