This assignment is ungraded and should not be submitted. The questions review key concepts from the reading for this module.

Expected duration
1.5 hours
Deadline
None (no explicit submission is required)
Points
None

Help Policy

Authorized Resources
Any
Notes
You may jointly work on this assignment with classmates

Assignment

Answer the following questions from Fundamentals of Database Management Systems (solutions):

  1. Name some entities and their attributes in a university environment. (Question 3.2)

  2. Name the four basic operations on stored data. In what important way is one in particular different from the other three? (Question 3.7)

  3. Give an example of and describe an application that would require sequential access in a university environment. (Question 3.9)

  4. Give an example of and describe an application that would require direct access in a university environment. (Question 3.10)

  5. What are the two kinds of data redundancy, and what are the three types of problems that they cause in the information systems environment? (Question 3.13)

  6. What are the two defining goals of a database management system? (Question 3.18)

  7. What are the four major DBMS approaches? Which approaches are used the most and least today? (Question 3.25)

  8. Answer the following questions based on the following Happy Cruise Lines’ data. (Minicase 3.1)

    Ship Number Ship Name Year Built Weight (Tons)
    005 Sea Joy 1999 80000
    009 Ocean IV 2003 75000
    012 Prince Al 2004 90000
    020 Queen Shirley 1999 80000
    Sailor Number Sailor Name Ship Number Home Country Job Title
    00536 John Smith 009 USA Purser
    00732 Ling Chang 012 China Engineer
    06988 Maria Gonzalez 020 Mexico Purser
    16490 Prashant Kumar 005 India Navigator
    18535 Alan Jones 009 UK Cruise Director
    20254 Jane Adams 012 USA Captain
    23981 Rene Lopez 020 Philippines Captain
    27467 Fred Jones 020 UK Waiter
    27941 Alain DuMont 009 France Captain
    28184 Susan Moore 009 Canada Wine Steward
    31775 James Collins 012 USA Waiter
    32856 Sarah McLachlan 012 Ireland Cabin Steward
    1. Regarding the Happy Cruise Lines Member file…
      1. Describe the file’s record type.

      2. Show a record occurrence.

      3. Describe the set or range of values that the Ship Number field can take.

      4. Describe the set or range of values that the Home Country field can take.

    2. Assume that the record of the Crew Member file are physically stored in the order shown.
      1. Retrieve all the records of the file physically sequentially.

      2. Retrieve all the records of the file logically sequentially based on the Sailor Name field.

      3. Retrieve all the records of the file logically sequentially based on the Sailor Number field.

      4. Retrieve all the records of the file logically sequentially based on the Ship Number field.

      5. Perform a direct retrieval of the records with a Sailor Number field value of 27467.

      6. Perform a direct retrieval of the records with a Ship Number field value of 020.

      7. Perform a direct retrieval of the records with a Job Title field value of Captain.

    3. The value 009 appears as a ship number once in the Ship file and four times in the Crew Member file. Does this constitute data redundancy? Explain.

    4. Merge the Ship and Crew Member files based on the common ship number field (in a manner similar to Figure 3.8 for the General Hardware database).

      Is the merged file an improvement over the two separate files in terms of…

      1. Data redundancy? Explain.

      2. Data integration? Explain.

    5. Explain why the Ship Number field is in the Crew Member file.

    6. Explain why ship number 012 appears four times in the Crew Member file.

    7. How many files must be accessed to find…
      1. The year that ship number 012 was built?

      2. The home country of sailor number 27941?

      3. The name of the ship on which sailor number 18535 is employed?

    8. Describe the procedure for finding the weight of the ship on which sailor number 00536 is employed.

    9. What is the mechanism for recording the one-to-many relationship between crew members and ships in the Happy Cruise Lines database above?