I have designed a fact table that stores the facts for a specific date dimension and an action type such as create, update or cancelled. The facts can be create and cancelled only once, but update many times.

myfact
---------------
date_key
location_key
action_type_key

This will allow me to get a count for all the updates done, all the new ones created for a period and specify a specific region through the location dimension.

Now in addition I also have 2 counts for each fact, i.e. Number of People, Number of Buildings. There is no relation between these. And I would like to query on how many of the facts having a specific count, such as how many have 10 building, how many have 9 etc.

What would be the best table design for these. Basically I see the following options, but am open to hear better solutions.

  1. add the counts as reference info in the fact table as people_count and building_count

  2. add a dimension for each of these that stores the valid options, i.e. people dimension that stores a key and a count and building dimension that stores a key and a count. The main fact will have a people_key and a building_key

  3. add one dimension for the count these is used for both people and building counts, i.e. count dimension that stores a key and a generic count. The main fact will have a people_count_key and a building_count_key

link|improve this question

"but update many times" That's not a proper fact table. That's some kind of summary table. A proper fact table is insert-only. Why aren't you simply using a proper fact table? Why are you updating summary counts? – S.Lott Sep 20 '10 at 21:16
Could you explain a bit more -- fact tables are usually not updated (except in some special cases). What is that this is supposed to count? How do people relate to buildings? – Damir Sudarevic Sep 20 '10 at 21:38
The information interested in is the how many times a record was create, how many times are record was updated, etc. and then also combine this with the other dimension. People are not related to building, just interested in the grouping and frequences of occurences of each counts. – mrjohn Sep 21 '10 at 12:26
given the problem as stated, a dimensional modelling approach seems like massive overkill. Is this a simplification of the real problem? What sort of volumes of data are you expecting? – Mark Bannister Sep 21 '10 at 14:13
maybe around 3000 insert per month, 2000 updates. The number of additional dimensions is about 8 so I can group over location, date, user time, etc. – mrjohn Sep 21 '10 at 20:59
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.