I have SQL Serve 2012 Analyses Services and reporting services.
I'm currently in data modeling phase and this is modeling and data source view question.
My question is that how to use statistical information in generally in Analyses Services?
Should they be dimention table or not? Should they appear at data source view at all?
I would like see report where are following data:
-Name
-Montly_salary
-Life expectancy (factors are year and age)
SQL SERVER TABLES ARE FOLLOWINGS:
Fact Table: Salary
Column:Person_id
Column: Monthly_salary
Column: Year
Dimention Table: Person
Column: Person_Id
Column: Name
Column: Age
Table: Statistics (During year 1945, when you were age of 45, you had avarage 30 year of life left)
Column: Age (for example 45)
Column: Year (1945)
Column: Life_expectancy (for example 30)
Kenny_I