确定Exact Online上所选分区的列表

时间:2017-09-08 08:45:53

标签: exact-online invantive-sql invantive-data-hub

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

select code 
from   systemdivisions 
where  city='Rotterdam'

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

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

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

1 个答案:

答案 0 :(得分:1)

使用以下查询:

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

检索当前选定的分区。