We want to consolidate many databases so people can analyze across many measures. In effect, this means that we will end up with number of measures in the 1000s - like 5000 to 8000 DIFFERENT measures. These measure have about 5 dimensions.

What is the best practice for the DSV, tables or views to handle this huge amount of measures?

I am thinking of these options:

  1. One big DSV with all measures. (Not sure if that will actually work)
  2. Having several measure groups, e.g. one Measure group for every 500-1000 measure. Then organizing things into Display folders.

The solution will run on SQL Server 2008 R2 or Denali.

Any ideas or experience is appreciated.

link|improve this question
You don't mention your data domain or anything about your database(s), so I'm curious about what sort of fact table could have 8000 measures at the same granularity for the same entity in the same business area. At least, that's what I understood from your question but I could easily be wrong. If you can give some more details maybe someone can suggest something. – Pondlife Dec 8 '11 at 16:00
The data is health related. So measures can e.g. be number of hospital discharges, percentage of smokers, percentage with access to sewage system, family income and Dioxin levels in human milk to name a few. – Peter Dec 8 '11 at 17:36
feedback

1 Answer

Not sure if you're still looking at this, but you could consider transposing your measures into a dimension. The implementation would be similar to the Accounts dimension (chart of accounts) in the SSAS and AdventureWorksDW examples. Your measures become rows in a dimension: allowing for lots of entries (rows) instead of columns, and a single "amount" measure (making your fact table leaner). In an Accounts style dimension you could have thousands of measures, parent-child roll-ups and support complex calculations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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