DBMS - Assignments - New - 23-5
DBMS - Assignments - New - 23-5
3.Write the responsibility of DBA.What is the difference between data dictionary & meta data.
4.Write the disadvantages of traditional file processing system over database systems.
Unit-2
2.Construct an E-R diagram for a car-insurance company whose customers own one or more cars
each. Each car has associated with it zero to any number of recorded accidents.In the accidents the
person owing the car is also involved.Following are the entities present in E-R diagram.
Unit-3
1.What is theta join?Discuss inner and outer join operation with example.
3.Let R1(ABCDE) and R2(D1XYWZ):where D1 is the joining attribute.create table using SQL.Insert
values into it using insert command.Considering the values ,Perform equi join,and then perform
natural join after rename operation using Relational algebra.
4. Student(roll,name,address,age)
Dept(dname ,facultyname,faculty_id,faculty_address)
Teach(roll,faculty_id)
Find the names of the student whose age is more than 21 using relational algebra and SQL.
Find the names and addresses of the students whose roll>123 in Relational algebra and SQL
Find the details of faculties of ETC department in Relational algebra and SQL
Find the faculty details who teach to roll 231 using Relational algebra and SQL
Find the student name taught by faculty MR.Ravi kumar using Relational algebra and SQL
Find all faculties teaching to roll 123by RA.
“Find the ROLL of STUDENTS who are taught by MR.RAVI and MR.RAHUL
Unit-4
beer→ brewery,strength
brewery → city
city → region
2.R(ABCD)
AB->CD
AC->BD
D->B
3.R(ABCD)
A->B
C->D
4.What are the guidelines for designing relational model?Discuss about various updation anomalies
of relational model?
Unit-5