We have a system that tracks the allocation of a unit of work, from receiving that unit of work till completing that unit of work.

A unit of work has a number of attributes, it's source, it's type etc. These I'm fairly ok with modelling, likely to be either dimensions of the fact or just attributes depending on the nature of them and how our users will desire reporting on them.

The problem is the allocation.

A unit of work may flow through multiple teams, within those teams it may flow through multiple individuals. Actions may be carried out on that unit of work.

And our users will be interested in reporting on this.

How many units of work were allocated, by team, in a specific time period for example.

I'm new to data warehousing, so I'm not sure how to model this. The candidates I've identified so far are:

1) Slowly Changing Dimensions

Using probably a Type 4, for the allocation to team and person within team.

2) Snapshot

Having Type 4 from/to attributes of the main fact that say when it was in account, so each unit of work occurs multiple times in the fact table that will populate the cube.

3) Accumulating Snapshot

I'm not sure I understand what this is, and I'm not sure it's relevant.

There are a number of things that would be like this SCD, team, team member, status, queue allocation of unit of work etc. So that seems to be a fair number of SCDs.

IS there something else I've missed in my list of options? Have I fundamentally mis-understood something?

link|improve this question

71% accept rate
What's a type 4 dimension? – Mark Bannister Sep 23 '10 at 12:11
A Type 4 Slowly Changing Dimension - see wikipedia on the subject, very well explained. en.wikipedia.org/wiki/Slowly_changing_dimension#Type_4 – THEMike Sep 24 '10 at 7:35
That said, I probably meant type 2. – THEMike Sep 24 '10 at 7:37
feedback

1 Answer

up vote 2 down vote accepted

If I understand correctly, one work unit can take several actions to complete. To start, I would choose a fact table with a grain of one action.

alt text

This shows dimPerson as type 2 dimension, it would also work as type 1, as long as CurrentTeamKey is copied into the TeamKey of the fact table on insert.

link|improve this answer
+1 I'd suggest dimPerson is a type 2 dimension if Team-related fields are in it (ie. no dimTeam), otherwise a type 1 dimension if dimTeam is a separate dimension (so no snowflaking, unless you really want to find out which Team a person now belongs to, regardless of which Team they were in at the time of the action). – Mark Bannister Sep 23 '10 at 12:16
I think I now understand this. I just need to read up a bit more on how to follow the consolidation of the whole piece of work, but I think that's just aggregation of the granular fact levels. – THEMike Oct 14 '10 at 10:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.