|
|
Subject:
Database Management Systems
Category: Computers > Software Asked by: skokie-ga List Price: $25.00 |
Posted:
04 May 2003 01:38 PDT
Expires: 03 Jun 2003 01:38 PDT Question ID: 199149 |
Convert the following table to an equivalent collection of tables that is in third normal form. This table contains information about patients of a dentist. Each patient belongs to a household. Patient ( HouseholdNum, HouseholdName, Street, City, State, Zip, Balance, PatientNum, PatientName, (ServiceCode, Description, Fee, Date) ) The following dependencies exist in the Patient table: PatientNum ³ HouseholdNum, HouseholdName, Street, City, State, Zip, Balance, PatientName HouseholdNum ³ HouseholdName, Street, City, State, Zip, Balance ServiceCode ³ Description, Fee PatientNum, ServiceCode ³ Date | |
| |
|
|
Subject:
Re: Database Management Systems
Answered By: dogbite-ga on 05 May 2003 15:01 PDT |
Hi skokie-ga, Great. Here is your answer. To satisfy 3NF you must first satisfy 1NF and 2NF. 1NF is simple -- you need a primary key (the PatientNum) and you cannot have duplicative columns (none here). 2NF requires that you pull out subsets of data that apply to multiple rows into separate tables. Then use external keys to link into the new tables. Then, for 3NF, we remove columns that are not fully dependent on the primary key. Table: Patient = (PatientNum*, PatientName, HouseholdNum) Table Household = (HouseholdNum*, HouseholdName, AddressID) Table Address = (AddressID*, Street, Zip) Table Zips = (Zip*, City, State) Table PatientServices = (PatientNum, ServiceCode, Date) Table Services = (ServiceCode*, Description, Fee) The primary keys are all tagged with a '*'. I believe this is 3NF because: 1) we have a primary key for each patient, 2) there are no duplicative colums, 3) No table can have subsets of data that are the same. For example, we cannot have two patients with the same PatientName and HouseholdNum (assuming normal family naming). 4) I removed the balance column because it can be computed by summing the Fees. To get this answer I mainly used my old course notes. But I also found these pages helpful: http://databases.about.com/library/weekly/aa081901a.htm - about.com description of 1NF http://databases.about.com/library/weekly/aa090201a.htm - about.com description of 2NF http://databases.about.com/library/weekly/aa091601a.htm - about.com description of 3NF I hope that helps you. dogbite-ga |
|
There are no comments at this time. |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
Search Google Answers for |
Google Home - Answers FAQ - Terms of Service - Privacy Policy |