获取所有行,即使它们未映射到维度使用中

发布于 2024-12-18 16:23:25 字数 208 浏览 1 评论 0原文

我有一个事实表,可以存储 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

输什么也不输骨气 2024-12-25 16:23:25

在我的实践中,我总是用 None 值填充字典表,并将所有空白值映射到该成员。
但是,如果您没有任何 TrxType2 类型的交易,如何计算它们呢?

如果您有下一个事实表:

Type_Id             Owner_id                ...
__________________________________________
1                13 (just for example)
1                8
0                11
0                4

Dictionary TrxType:
___________________________
id           Code
0            None
1            TrxType1
2            TrxType2

您的维度可以具有以下层次结构

                        Count of rows 
All                     4
  -None                 2  
  -TrxType1             2
  -TrxType2             0

如果您有不同的情况 - 请写一个示例。

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:

Type_Id             Owner_id                ...
__________________________________________
1                13 (just for example)
1                8
0                11
0                4

Dictionary TrxType:
___________________________
id           Code
0            None
1            TrxType1
2            TrxType2

your dimension can have the following hierarchy

                        Count of rows 
All                     4
  -None                 2  
  -TrxType1             2
  -TrxType2             0

If you have different situation - please write an example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文