Database Management System Model Question
Section A
Long Answer Questions
Attempt any TWO questions. [2×10=20]
AI is thinking...
1. Consider a database system with following schemas; [10]
Hospital(hname, haddress, hspecilaity)
Doctor(did, dname, dspecilization, )
Worksat(did, hname, workinghrs)
Pharmacy(phname, hname, no_of_sales, total_revenue)
Now write SQL statements and relational algebra statements for following queries;
a. Select name of all doctors having specialization “gyno”.
b. Select the name and address of hospital where working hours is “day”.
c. Using natural join select the name of doctors whose working hours are “night”.
d. Find the average salary of the doctors.
e. Find names of hospital and their pharmacy which generate revenue more than
10000. Sort the result in descending order on the basis of pharmacy name.
AI is thinking...
2. What do you mean by weak entity and partial key? Design an ER diagram for following scenario; [3+7]
In film industry, producers produce movies. Producers have their name, age and budget as
attributes. They are uniquely identified by prod_id. All the movies have their title, year, and
release date. No movies can have same title. Every movies must be played by actor. An actor
can play many movies. Actors have Fname and Lname to uniquely identify them. The actors
have charge_rate as well. A single movie can have many producers and a producer can produce
many movies.
AI is thinking...
3. Define serial, non-serial and serilizable schedules with example. How can you test
serializability in a schedule, illustrate with an example? [6+4]
AI is thinking...
Section B
Short Answer Questions
Attempt any EIGHT questions. [8×5=40]
AI is thinking...
4. What is data independence? How three schema architecture ensures logical and physical
data independence?
AI is thinking...
5. What do you mean by generalization specialization in EER? Illustrate with examples.
AI is thinking...
6. Define domain constraint and referential integrity constraint.
AI is thinking...
7. Why normalization is needed in database design? Describe third normal form with an
example.
AI is thinking...
8. Show how lost update and incorrect summary problem might occur in concurrent
execution of transactions.
AI is thinking...
9. Define Outer Join in SQL. Given following relations, show the results of left and right out Joins. [1.5+3.5]
AI is thinking...
10. What is shadow paging? How it is used for database recovery? [3+2]
AI is thinking...
11. Differentiate structured and unstructured data. List the advantages of NoSQL. [2.5+2.5]
AI is thinking...
12. During ER-to-Relational Mapping, show how you map 1:N and N:M relationship into a
relation?
AI is thinking...