I have a requirement to build a design to incorporate data from a Global census.
There are a series of questions to which responses are given by respondents in different countries.
The answers to these questions can be numeric (or monetory) as well as descriptive.
I have come up with a design with the following:
Dim Question (having a list of all questions)
Dim Respondent (the respondent list)
Dim Country (where that respondent belongs to)
Fact (Containing question Id, respondent id, country id and the answer itself)
The problem Iam facing is obvious.
I can only store rows in the fact relating to answers which are numeric (or monetory).
I cannot store descriptive answers as these cannot be aggregated.
Is there any way of solving this, or it is not feasible to build a star schema based on these requirements?
Thanks in advance.
Pramod