0

I am processing a cube in SQL Server 2008 Analysis Services.

Is there a setting to include all rows in a Dimension table even when there are no FACT table entries for some of the Dimension rows

e.g. there are no sales for Product Type 1 in July but I would like to see it when I browse the cube, with a value of zero or null

At the moment, when my cube processes, Product type 1 does not appear for July at all. The data is not that large so I am not overly worried about cube size or processing time

thanks.

4

1 回答 1

0

如果您已将多维数据集处理配置为执行数据库的“进程完整”,或者如果您在单个步骤中执行,维度的“进程完整”,则数据应该在那里。

我假设您NON EMPTY在查询中使用,因此在事实表中看不到没有值的产品。如果您自己手动编写 MDX,请省略NON EMPTYfrom the rows 子句(或 columns 子句,以防您在列上有产品)。如果您使用的是根据您单击的内容生成 MDX 的工具,通常您可以在某处配置是否NON EMPTY应该使用。但是你在哪里做这取决于你使用的工具。

于 2013-09-18T07:39:00.127 回答