获取所有行,即使它们未映射到维度使用中
我有一个事实表,可以存储 2 种类型的事务 - TrxType1、TrxType2,其具有映射到 Dim Owner 的名为 Owner_Id 的属性。问题是只有一种类型的事务 TrxType1 有所有者,而另一种类型没有关系。因此,在查询多维数据集时,我没有获取 TrxType2 的记录。
有办法管理吗?我已经尝试将 Null 处理更改为 UnkownMember,但我仍然看不到。
I have a fact table that can store 2 types of transactions - TrxType1, TrxType2 having an attribute called Owner_Id mapped to Dim Owner. Problem is only one type of transaction TrxType1 has owner and the other does not have a relationship. Hence while querying the cube I am not getting the records for TrxType2.
Is there a way to manage it? I have already tried changing Null Processing to UnkownMember but still I am unable to see.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我的实践中,我总是用 None 值填充字典表,并将所有空白值映射到该成员。
但是,如果您没有任何 TrxType2 类型的交易,如何计算它们呢?
如果您有下一个事实表:
您的维度可以具有以下层次结构
如果您有不同的情况 - 请写一个示例。
In my practice I always fill in dictionary tables with None value and map to this member all blank values.
But if you don't have any transactions with type TrxType2 how you can count them?
If you have next fact table:
your dimension can have the following hierarchy
If you have different situation - please write an example.