Question: 1 . Task # 1 Normalization In the lecture, we discussed normalization. The two datasets below are not normalized yet, so we should normalize the

1. Task #1 Normalization
In the lecture, we discussed normalization. The two datasets below are not normalized yet, so we should normalize the datasets into 3NF tables. Show the normalization steps for each dataset using the format provided in the example.
Example)
1 NF:
PROJECT (ProjectNum, Proj_Name, Start_Date, Emp_Num, Emp_Name, Job_Class_Code, Job_Class_Desc)
2 NF:
PROJECT (ProjectNum, Proj_Name, Start_Date)
EMP (Emp_Num, Emp_Name, Job_Class_Code, Job_Class_Desc, ProjectNum)
3 NF:
PROJECT (ProjectNum, Proj_Name, Start_Date)
EMP (Emp_Num, Emp_Name, Job_Class_Code, ProjectNum)
JOB_CLASS (Job_Class_Code, Job_Class_Desc)
** Bold and underlined fields are primary keys and italicized fields are foreign keys
Dataset #1
(Stu_Num, Stu_Name, Stu_Major_Code, Stu_Major_Title, Dept_Code, Dept_Name, Dept_Phone, College_Code, College_Name, Advisor_Num, Advisor_Name, Advisor_Office, Advisor_Phone, Stu_Currnent_Gpa)
** In the table design, we want to show that departments belong to certain college (rather than showing that students belong to certain college).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!