2

当我使用以下方法在 Data Hub 中设置活动分区列表时:

select code 
from   systemdivisions 
where  city='Rotterdam'

对于鹿特丹的所有客户,下一个查询将检索所有客户的数据。

在 Invantive Control 中,我可以在 GUI 中看到选择了哪些分区,但这在 Data Hub 中不可见,因为它是一个命令行工具。

之后如何确定哪些公司被选为分区?

4

1 回答 1

1

使用以下查询:

select code
,      label
,      short_name
from   systempartitions@datadictionary 
where  is_selected = true
order
by     code

检索当前选定的分区。

于 2017-09-08T08:46:40.900 回答