Tutorial 06 (SD 2052)
Tutorial 06 (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
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;