I've got the following question.
I have 3 dimensions:
Dim1
Dim2
Dim3
And a fact table, let's say:
FACT
After processing the cube, I run a query which is to obtain the values filtered by dimension Dim1. However, I only get values for one member of Dim1
select [Measures].[Volume] on columns,
[Dim1].[ID].[ID].members on rows
from [Cube]
Dim1ID | Volume
A | 10
B | (NULL)
C | (NULL)
But when I run the following SQL:
select d.id, f.volume
from fact f, dim1 d
where d.id=f.id
Dim1ID | Value
A | 10
B | 20
C | 30