Logical Data Modeling -
Question 1: Normalize the logical data model step by step, i.e. 1st NF->2nd NF->3rd NF. (First Normal Form, Second Normal Form and Third Normal Form)
Question 2: Draw the ERD (Entity Relationship Data) after you normalize the system to the 3rd NF
The physician Master File from a DFD (Data Flow Diagram) contains the following data elements:
Social Security #
Physician ID
Last_Name
First_Name
Mid_Init
Hospital_Resident_ID
Hospital_Resident_Name
Hospital_Addr_Line1
Hospital_Addr_Line2
Hospital_State
Hospital_City
Hospital_ZIP
Specialty_Type
Specialty_Name
Specialty_College
Date_Graduated
Birth_Date
Year_First_Practiced
Years_Practiced
Annual_Earnings
Normalization to 1st NF:
A database relation is called in first NF if:
The dataset given can be assumed to have single value in each cell with below assumptions, i.e. 1.1 is satisfied:
Assumption #1: The physician practices for one hospital only.
Assumption #2: The physician has only speciality.
Identifying primary key for 1.2: let’s given the relation name as PHYSICIAN and it can have below primary key:
PHYSICIAN(Physician_ID)
The relation PHYSICAN is in 1NF now.
Normalization to 2nd NF:
A database relation is called in second NF if:
The database relation given is in 1NF already thus 2.1 is satisfied.
Let’s consider 2.2, there are below functional dependencies in the relation PHYSICIAN:
The above functional dependency needs to be removed. Let’s break the relation in below parts:
**Primary keys are Underlined and highlighted
The primary keys are underlined and highlighted in the relations. The above 5 relations are in 2NF.
Normalization to 3rd NF:
A database relation is called in third NF if:
The relations identified in Normalization to 2nd NF are already in required normal form that is 3.1 is already satisfied.
Let’s consider 3.2 for relation HOSPITAL_RESIDENT the relation has below transitive dependency:
Hospital_Resident_ID -> Hospital_State
Hospital_State -> Hospital_Zip
Thus Hospital_Zip is transitively dependect on Hospital_Resident_ID. To remove the same. Break the relation in below two relations:
Now all the relations listed below are in 3NF having Primary/compiste key highlighted and bold.

The given ERD has below relations:
Logical Data Modeling - Question 1: Normalize the logical data model step by step, i.e. 1st...
The lab for this week addresses taking a logical database design (data model) and transforming it into a physical model (tables, constraints, and relationships). As part of the lab, you will need to download the zip file titled CIS336Lab3Files from Doc Sharing. This zip file contains the ERD, Data Dictionary, and test data for the tables you create as you complete this exercise. Your job will be to use the ERD Diagram found below as a guide to define the...
Create a Crow’s Foot Notation Entity Relationship Diagram (ERD) to support the following business operations:The local city youth league needs a database system to help track children who sign up to play soccer. Data needs to be kept on each team, the children who will play on each team, and their parents. Also, data needs to be kept on the coaches for each team and matches.You need to store theTeam IDTeam namePlayer IDPlayer first name,Player last name, andPlayer age of...
for question (c) do like this
3. A table to record the information of Dentists, Patients, and Appointments in a clinic is given below. DentistNo DentistName PatientNo PatientName PatientPhone AppointmentDate Appointment Time AppointmentFee On a single day each patient can have more than one appointment. It is known that DentistNo is unique for each dentist. PatientNo is unique for each patient. PatientNo must not be used as a composite key. A patient is allowed to see any dentist. (a) Use...
1/11 Question 2 of 10, Step 1 of 1 Correct Suppose the following data were collected from a sample of 5 car manufacturers relating monthly car sales to the number of dealerships and the quarter of the year. Use statistical software to find the following regression equation bo+b DEALERSHIPS, + bQUARTERI, + byQUARTER2, +b,QUARTER3, + e SALES, Is there enough evidence to support the claim that on average, car sales are higher in the 4th quarter than in the 1st...