Question: This is Database System Concepts class (text book using is ' database system concepts (6th edition) by silberschatz korth and sudarshan' ) Solve question 1
This is Database System Concepts class (text book using is 'database system concepts (6th edition) by silberschatz korth and sudarshan')
Solve question 1 using standard SQL. Solve question 2 using either standard SQL or Oracle. Please write clearly and explain your solution where needed.
1. Consider the database given in Figure 4.12, page 155 of the text. Create an SQL assertion that ensures that every name that appears in the relation address appears in either salaried_worker or hourly_worker, but not necessarily in both.
2. Suppose you are given a relation emp(empid, dept, salary) and wish to maintain a materialized view deptsalary(dept, totalsalary) which stores the total salary for all employees of each department. Suppose the system does not support materialized views but supports triggers. Write an SQL or Oracle trigger on insert on emp to keep the relation deptsalary up to date. Do not worry about deletes or updates. You can assume that there is already a tuple for each department in deptsalary so you do not need to worry about new deparments. (Note: if you solve this question using Oracle, do not create a view for deptsalary, just create a table for it.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
