Dbms Imp
Dbms Imp
b) Explain in brief about the Client Server architecture for the database?
6.What is Entity set? And also define Relationship set. List and explain the
symbols used to draw ER Diagram
7.Explain the following SQL constructs with examples: (i) order by (ii) group by
and having (iii) as select (iv) schema
8.Define the following terms and give examples. (i) Cardinality (ii) Unary
relationships (iii) aggregation (iv) specialization.
10.Explain the difference between external, logical and physical level schemas.
How are these different schema layers related to the concepts of logical and
physical data independence?
2.Define normalization? What are the steps in normalization? What are the
advantages of normalized relation over un normalized relation?
3.Explain 1NF, 2NF and 3NF with suitable example. And Illustrate the problems
with these normalizations.
12.What are the techniques used to organize the data in an index for efficient
retrieval of data entries.
13..Write SQL statements for following: Student( Sno, Sname, courseId, email_id, Mobileno)
Course(CID, Cname, Cduration)
i) Add a column city in student table.
ii) ii) Find out list of students who have enrolled in “AIML” course.
iii) iii) List name of all courses with their duration.
iv) iv) List name of all students start with “R”
v) v) List email_Id and Mobileno of all Computer Science Engineering students.
14.Write SQL statements for the following: Sailors(sid, sname, rating, age) Boats(bid, bname,
color) Reserves(sid, bid, day)
i) Find the sids of all sailors who have reserved red boats but not green boats
ii) . ii) Find all sids of sailors who have a rating of 10 or reserved boat 104
iii) . iii) Find the names of sailors who have reserved boat 110.
iv) iv) Find the names of sailors who have reserved all boats.
v) v) Find the average age of sailors with a rating of 7.