在 Exact Online 上确定选定分区的列表
Determine list of selected partitions on Exact Online
当我在 Data Hub 中设置活动分区列表时使用:
select code
from systemdivisions
where city='Rotterdam'
对于鹿特丹的所有客户,下一个查询将检索所有客户的数据。
在 Invantive Control 中,我可以在 GUI 中看到选择了哪些分区,但这在 Data Hub 中不可见,因为它是一个命令行工具。
之后如何确定哪些公司被选为分区?
使用以下查询:
select code
, label
, short_name
from systempartitions@datadictionary
where is_selected = true
order
by code
检索当前选择的分区。
当我在 Data Hub 中设置活动分区列表时使用:
select code
from systemdivisions
where city='Rotterdam'
对于鹿特丹的所有客户,下一个查询将检索所有客户的数据。
在 Invantive Control 中,我可以在 GUI 中看到选择了哪些分区,但这在 Data Hub 中不可见,因为它是一个命令行工具。
之后如何确定哪些公司被选为分区?
使用以下查询:
select code
, label
, short_name
from systempartitions@datadictionary
where is_selected = true
order
by code
检索当前选择的分区。