Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Database logical structure

Hi all,

I'm facing a frustrating problem at the moment, I'm developing a skill management tool but I cant seem to get the database structure correct (works fine in Access). The problem is this: An employee has an employeeID, and a JobID. Linked to a certain job there are some skills, so each skill has a Job ID as well, the problem causer is the fact that every employee has their individual skills graded which causes a loop:

Database with loops.jpg

I thought that creating a duplicate table of jobs did the trick but now I face the problem that the jobs that are mentioned in the employee table aren't logically related to the skills anymore:

Database without loops.jpg

Anyone has any suggestions to solve this problem?

Thanks in advance!

4 Replies
NickHoff
Specialist
Specialist

Use a mapping load for Jobs/Jobs2, and apply map to your fact table which looks like it's IndividualS.  I would also left join your organization table into employees.

Not applicable
Author

How can I apply a Jobs mapping to my IndividualScores table? It doesn't contain JobID only SkillID

alexandros17
Partner - Champion III
Partner - Champion III

Left join Skills to indivisual skills, so when you load:

load * resident IndivisdualsSkills;

left join

load * resident Skills

Let me know

NickHoff
Specialist
Specialist

You are correct.  Instead of IndividualS apply map to Skills.  Typically when you have a table in your data model that has ID, Description/Value, the general rule is to apply map to the table it relates to.  Instead of a snow flake schema you'll see more performance out of a star schema.  Your final data model should only be three tables, IndvidualS, Skills, and Employees

Another rule is when you have two tables with the same primary key, they should be joined.