What general guideline would you recommend for deciding when to store information in a single attribute and when to split the information?

Attributes

Consider a STUDENT relation in a UNIVERSITY database with the following attributes . Note that the cell phone may be from a different city and state  from the local phone. A possible tuple of the relation is shown below:

Name Ssn Local_phone Address Cell_phone Age Gpa

George Shaw 123-45-6789 555-1234 123 Main St., 555-4321 19 3.75

William Edwards Anytown, CA 94539

Identify the critical missing information from the Local_phone and Cell_phone attributes.

Would you store this additional information in the Local_phone and Cell_phone attributes or add new attributes to the schema for STUDENT?

Consider the Name attribute. What are the advantages and disadvantages of splitting this field from one attribute into three attributes ?

What general guideline would you recommend for deciding when to store information in a single attribute and when to split the information?

Suppose the student can have between 0 and 5 phones. Suggest two different designs that allow this type of information.

5.20. Recent changes in privacy laws have disallowed organizations from using

Social Security numbers to identify individuals unless certain restrictions are satisfied. As a result, most U.S. universities cannot use SSNs as primary keys . In practice, Student_id, a unique identifier assigned to every student, is likely to be used as the primary key rather than SSN since Student_id can be used throughout the system.

Some database designers are reluctant to use generated keys for primary keys because they are artificial. Can you propose any natural choices of keys that can be used to identify the student record in a UNIVERSITY database?

Suppose that you are able to guarantee uniqueness of a natural key that includes last name. Are you guaranteed that the last name will not change during the lifetime of the database? If last name can change, what solutions can you propose for creating a primary key that still includes last name but remains unique?

What are the advantages and disadvantages of using generated keys?

What general guideline would you recommend for deciding when to store information in a single attribute and when to split the information?
Scroll to top