浏览SSAS多维数据集时的空白维度名称

时间:2014-12-30 22:46:43

标签: ssas mdx cube-dimension

我最近开始遇到奇怪的问题,如下图所示。浏览SSAS多维数据集时,维度名称显示为空白。

Dimension: I have [Date].[Calendar Month].[Month] Measure: [Services in 3 days]

enter image description here

运行像

之类的查询后
Select [Date].[Calendar Month].[Month] on 0 From [Service Cube]

然后,维度成员名称显示在多维数据集浏览器中,具有不同的度量值。

任何线索?

enter image description here

1 个答案:

答案 0 :(得分:1)

那是因为[Date].[Calendar Month]层次结构中有空白成员。要查看“退出”,请运行以下MDX查询:

WITH SET BlankMonth AS
FILTER([Date].[Calendar Month].CHILDREN, [Date].[Calendar Month].currentmember.MEMBERVALUE = '')

SELECT [Measures].[Services in 3 days] ON 0,
BlankMonth ON 1
FROM [Service Cube]