0% found this document useful (0 votes)
134 views2 pages

Tutorial 06 (SD 2052)

The document discusses topics related to database systems including: the data-information-decision cycle diagram, explaining what EDP stands for and describing EDP briefly, explaining the functionalities of an Information Systems department, explaining the placement of the DBA function diagrammatically, discussing how changes in DBMS technologies affect organizational styles, illustrating the DBA functional organization diagram, contrasting the activities and characteristics of DA and DBA, listing desired DBA technical skills, distinguishing between policies, procedures, and standards, defining CASE tools and explaining different types, and identifying critical success factors for IS strategy. It also includes a practical example with sample data and queries involving ships, sailors, and their dependents.

Uploaded by

Rifat_mmu
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
134 views2 pages

Tutorial 06 (SD 2052)

The document discusses topics related to database systems including: the data-information-decision cycle diagram, explaining what EDP stands for and describing EDP briefly, explaining the functionalities of an Information Systems department, explaining the placement of the DBA function diagrammatically, discussing how changes in DBMS technologies affect organizational styles, illustrating the DBA functional organization diagram, contrasting the activities and characteristics of DA and DBA, listing desired DBA technical skills, distinguishing between policies, procedures, and standards, defining CASE tools and explaining different types, and identifying critical success factors for IS strategy. It also includes a practical example with sample data and queries involving ships, sailors, and their dependents.

Uploaded by

Rifat_mmu
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

SD 2052

Database Systems
Tutorial: 6
Topic:More SQL

Discussion
1. Illustrate the diagram for Data-Information-Decision Cycle.
2. What is EDP stands for? Describe briefly about EDP.
3. Briefly explain about the functionalities of Information Systems (IS)
Department.
4. Briefly explain The Placement of the DBA Function with necessary
diagram.
5. What are the Changes in DBMS Technologies Affecting
Organizational Styles?
6. Illustrate the diagram for DBA Functional Organization.
7. Contrast DA and DBA Activities and Characteristics.
8. List out the desired DBA technical skills.
9. Distinguish the term Policies, Procedures, and Standards.
10. Define the term CASE Tools? Briefly explain different types of CASE
Tools. States the benefits of using CASE Tools?
11. What is the Critical Success Factors for IS Strategy?

Practical:
1
1
SHIP SAILOR DEPENDEN
T
SHIP_ID SAILOR_ID
SHIP_NAME SAILOR_NAM DEP_ID
M E DEP_NAME
SHIP_ID M SAILOR_ID

1,'Enterprise' 1, 'James Tiberius Kirk', 1, 6,'Paolo'


2,'Santa Maria' 1 2, 4,'Peter'
3,'Kampung 2, 'Spock', 1 3, 12,'Sara'
Buoy' 3, 'Chekov', 1 4, 12,'Adam'
4, 'McCoy', 1 5, 3,'Ivana'
5, 'Christopher 6, 10,'Adam'
Columbus', 2
6, 'Juan Santos de
Maria', 2
7, 'Pedro Diaz', 2
8, 'Diego de Montoya', 2
10, 'Lat', 3
11, 'SIti', 3
Queries:

1. Show the ship name for the dependent of ‘Adam’.


select ship_name from ship,sailor,dependent
where ship.ship_id =sailor.ship_id
and sailor.sailor_id=dependent.sailor_id
and dependent.dep_name='Adam';

2. Show the dependent name for the Ship of 'Kampung Buoy'.


select dep_name from ship,sailor,dependent
where ship.ship_id =sailor.ship_id
and sailor.sailor_id=dependent.sailor_id
and ship.ship_name='Kampung Buoy';

3. Show the dependent name and ship name sorted by Dependent


name.
select dep_name, ship_name from ship,sailor,dependent
where ship.ship_id =sailor.ship_id
and sailor.sailor_id=dependent.sailor_id
order by dep_name;

4. Show the dependent name, sailor name and ship name sorted by
sailor name.
select dep_name, sailor_name, ship_name from ship,sailor,dependent
where ship.ship_id =sailor.ship_id
and sailor.sailor_id=dependent.sailor_id
order by sailor_name;

5. Show the sailor name and dependent name.


select sailor_name from sailor,dependent
where sailor.sailor_id=dependent.sailor_id;

6. Show the sailor name uniquely.


select distinct sailor_name from sailor,dependent
where sailor.sailor_id=dependent.sailor_id;

7. Show the number of sailor working in the ship.


select count (distinct sailor_name) from sailor,dependent
where sailor.sailor_id=dependent.sailor_id;

8. Show the number if dependent who is working in 'Kampung Buoy'.


select count(dep_name) from ship,sailor,dependent
where sailor.sailor_id=dependent.sailor_id
and ship.ship_id=sailor.ship_id
and ship_name='Kampung Buoy';

You might also like