Access version: 2007
Objective: Create database to track employee training courses. This consists of [category] [skill] [level] and [Shift] for each of the 450 employees.
I have created 2 tables:
Emp_tbl (450 records) [emp_ID] [name] [shift]
Skills_tbl (2500 records) [CatID] [Category] [skill][Level}
My problem is how to store this information. If I create a table that includes emp_tbl.[emp_ID], emp_tbl.[name], emp_tbl.[shift] and Skills_tbl.[CatID], Skills_tbl.[Category], Skills_tbl.[Skill], SKills_tbl.[Level]
I will end up with 186,000 records.
I would appreciate any suggestions with organization of this data.
Objective: Create database to track employee training courses. This consists of [category] [skill] [level] and [Shift] for each of the 450 employees.
I have created 2 tables:
Emp_tbl (450 records) [emp_ID] [name] [shift]
Skills_tbl (2500 records) [CatID] [Category] [skill][Level}
My problem is how to store this information. If I create a table that includes emp_tbl.[emp_ID], emp_tbl.[name], emp_tbl.[shift] and Skills_tbl.[CatID], Skills_tbl.[Category], Skills_tbl.[Skill], SKills_tbl.[Level]
I will end up with 186,000 records.
I would appreciate any suggestions with organization of this data.
Comment