Kimball Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Linking two Fact tables with different grain through a hierarchy dimension

5 posters

Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Linking two Fact tables with different grain through a hierarchy dimension

Post  johankarlss Tue May 31, 2011 7:22 pm

Hi,
While I found some similar topics discussing the issue I'm having, I wasn't able to get a clear answer to my specific problem.

I've got the following structure (simplified) that contains data around students for universities:

Facts:
FactActuals (lowest grain: students)
FactTargets (lowest grain: university, age bands)

Dimensions:
DimUniversity
DimAge
DimStudent

So my two fact tables sits on different grains, Actuals being down to students while the targets are set on a university level and based on age band (e.g. 25-30).
The requirement is for the users to be able to compare Actuals and Targets in the same cube (University completion rate etc.). The actuals fact table needs to go down to student level as it's already being used by other cubes in the business.
I'm having problems figuring out how the DimAge dimension fits in to the model. On the FactActual table I can link it directly to the fact as I can get the student age (e.g. 25), where as the target fact table needs to be set on the DimAge attribute "age band", which is a rollup of the age.

I've had some ideas around creating a view over DimAge that rolls it up to a DimAgeBand level, or even materialising it into a new dimension table. But it I would then lose the ability to link the facts via the dimension in a cube?

Very thankful for any response or guidence in this, and very interested in what is considered best practice in this scenario.

Please let me know if clarification is required.

Regards,
Johan Karlsson



johankarlss

Posts : 10
Join date : 2011-05-31
Location : New Zealand

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  BoxesAndLines Wed Jun 01, 2011 9:09 am

Create two dimensions. One for age band, one for age. Altough I would store birthdate and calculate age.
BoxesAndLines
BoxesAndLines

Posts : 1212
Join date : 2009-02-03
Location : USA

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  johankarlss Wed Jun 01, 2011 8:02 pm

Thanks for your reply.

So just to confirm:
- I will end up with two dimensions, age and age band (age is a hierarchy already used in the business so it will contain age band as well).
- My FactActuals will have two dim keys, one for each of the above dimensions.
- FactTargets will have a single "age band" dim key.

Many thanks,
Johan

johankarlss

Posts : 10
Join date : 2011-05-31
Location : New Zealand

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  hang Thu Jun 02, 2011 6:32 am

With 2 dimensions, if you have an additional Age Band attribute in the DimAge, DimAgeBand is a natural shrunken dimension or a roll up dimension of DimAge, so you only need one AgeKey in the actual fact table.

hang

Posts : 528
Join date : 2010-05-07
Location : Brisbane, Australia

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  johankarlss Thu Jun 02, 2011 5:11 pm

Thanks.

Sorry if I'm being thick, but I think I need both keys in my actual?
The DimAge has attributes needed that sits on a lower grain than DimAgeBand, so will need to be linked to the fact.
The DimAgeBand requires a link to both Facts in order for the users to do comparisons and cross analysis (target vs actuals).
Unless I link the two dimensions on the Age Band level somehow and get the facts to link that way?

johankarlss

Posts : 10
Join date : 2011-05-31
Location : New Zealand

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  LAndrews Thu Jun 02, 2011 6:22 pm

In order to link your actual with target, you should be using 2 queries, with the results linked by the common attributes.

If Age_band is an attribute on your age dimension, then you should not require the age_band dimension on you actual fact.

LAndrews

Posts : 132
Join date : 2010-05-13
Location : British Columbia, Canada

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  BoxesAndLines Thu Jun 02, 2011 6:29 pm

You could do it one dim as well. Either way will work. To make it easier for the users, you could create two views, one for age, one for age band, to remove non-applicable hierarchy columns. Think of it like your date dimension. If you want to roll up to the month level you use the month level columns and not the day level columns.
BoxesAndLines
BoxesAndLines

Posts : 1212
Join date : 2009-02-03
Location : USA

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  johankarlss Thu Jun 02, 2011 7:03 pm

Thanks, the main goal here is to make it easy for the users but also a solution that's easy to maintain.
I went down the view route as well, but couldn't quite figure out how my surrogate key would link to the target fact table. (as it sits on a different grain).

It appears that the summary here is to create a new DimAgeBand dimension and linking that to the DimAge dimension on the Age Band attribute in queries / semantic layers, which will enable the users to do analysis across the facts.

Thanks for the help on this, much appreciated.

johankarlss

Posts : 10
Join date : 2011-05-31
Location : New Zealand

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  hang Thu Jun 02, 2011 8:01 pm

If you understand what I mean by shrunken dimension, you might rethink about the two keys in actual fact table.

I would not snowflake DimAge like that as it's straightforward hierarchical relationship between Age and Age Band and they are tiny dimensions. In dimensional thinking, you denormalise them into single dimension and the hierarchy is established within the dimension, not through snowflake or even the fact table. You also aggregate the actuals on Age Band through the same dimension entry AgeKey instead of anything else.

It would be unnecessary to have an extra highly repeated keys in the actual fact table, although it may not be a big deal for small project. It is about building best practice habit to take on big fact tables and monster dimensions. It’s also confusing to users if there are two keys in your fact table while having AgeBand attribute in Age dimension. Users would guess which path they should take to navigate the hierarchy.

For comparison between actuals and budgets, it is the common attribute values that provide the common ground (conformance).

hang

Posts : 528
Join date : 2010-05-07
Location : Brisbane, Australia

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  johankarlss Thu Jun 02, 2011 8:18 pm

Thanks Hang, I absolutely agree with everything above, FactActuals is not the problem.
I'm still not clear on the best practice around how to link DimAge to FactTargets?
The dimension surrogate key is down to the age level so linking FactTargets to DimAge on "age band" would not work as it would create a many to many relation, due to the dimension being on a lower grain than the fact table.

johankarlss

Posts : 10
Join date : 2011-05-31
Location : New Zealand

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  hang Thu Jun 02, 2011 9:39 pm

Link FactTargets to the shrunken dimension DimAgeBand which coexists with DimAge. The point is even if you create the DimAgeBand out of DimAge, you still need the AgeBand attribute in DimAge for the purpose of dimension conformance.

Or you can do as B&L suggested if you don't want a physical DimAgeBand, create an AgeBand view on top of DimAge so it will have perfect 1-m relationship between AgeBand view and Targets. Both approaches work.


Last edited by hang on Thu Jun 02, 2011 10:28 pm; edited 1 time in total

hang

Posts : 528
Join date : 2010-05-07
Location : Brisbane, Australia

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  johankarlss Thu Jun 02, 2011 9:49 pm

Thanks, that makes sense and I'm happy to start implementing my solution.

I assume this is quite a common scenario, (for example: Product - ProductGroup or Date - Month), and good to know what the best practice is.

Many thanks for your help.

johankarlss

Posts : 10
Join date : 2011-05-31
Location : New Zealand

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  VHF Fri Jun 03, 2011 5:38 pm

Just remember that when querying across fact tables you always join based on conformed dimension attributes (in this case AgeBand).

VHF

Posts : 236
Join date : 2009-04-28
Location : Wisconsin, US

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  johankarlss Wed Jun 15, 2011 5:34 pm

What are your thoughts around duplicating the Actual figures inside FactActual into FactTarget, aggregating the Actuals to the same level as Targets? (and renaming factTarget to something more appropriate).
So I basically end up with a lower grained FactActual containing actual figures, and the "FactTarget" will have both actuals and targets on the same grain.

This way I wouldn't have to query across Facts.

johankarlss

Posts : 10
Join date : 2011-05-31
Location : New Zealand

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  VHF Wed Jun 15, 2011 5:45 pm

Sounds good!

Your "Targets" determine the lowest level of granularity for which you would be able to compare ("drill across") targets and actuals, so aggregating the actuals to this level and then putting them in the same fact table makes sense to me.

VHF

Posts : 236
Join date : 2009-04-28
Location : Wisconsin, US

Back to top Go down

Linking two Fact tables with different grain through a hierarchy dimension Empty Re: Linking two Fact tables with different grain through a hierarchy dimension

Post  Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum