Complex dimension question
I have two dimension; 1 is a 'Users' dimension which has information about users of our system, the other is a self-referencing dimension containing industry hierarchies.
The Users dimension is linked to the Industry dimension by Industry ID.
I tried adding the Industry hierarchy to the Users dimension but when I go to browse the hierarchy all I see is IDs of the DimUser table, so I think that I did something wrong.
My goal is to add the industry hierarchy to the User dimension.
Can I do this with my current architecture?
Here are some examples of the two dimension:
DimUsers
- ID
- Name
- IndustryID (FK -> DimIndustry.ID)
DimIndustry
- ID
- IndustryName
- ParentID (FK -> DimIndustry.ID)
Thanks in advance.

