gpt4 book ai didi

exact-online - “使用选择”符号指定 Exact Online 数据容器的多个分区

转载 作者:行者123 更新时间:2023-12-02 01:08:51 29 4
gpt4 key购买 nike

我想在数据中心选择一个事件分区。通常我会使用以下语句:

INVANTIVE> use 1552839
2>
Exclamation itgendhb077: Error in Invantive Data Hub.
Database '1552839' does not exist. Make sure that the name is entered correctly.

这给出了一个错误。我注意到当我为我的精确在线连接使用别名时它确实有效:

INVANTIVE> use 1552839@eol
2>
itgendhb018: 0 Rows Affected (111 ms)

但我想执行以下操作,从 SQL 表中选择我想要的分区,但这行不通:

use select division_code from dc.rs.selected_admins@sql

另一种方法效果不佳:

INVANTIVE> use select code from systemdivisions@eol sd inner join dc.rs.selected_admins@sql sa on sd.code = sa.division_code
2>
Exclamation itgendhb077: Error in Invantive Data Hub.
Database '1552839' does not exist. Make sure that the name is entered correctly.

最佳答案

当没有指定别名时,按照“sortingorder”的顺序第一个连接的数据容器被寻址。鉴于错误消息的类型,这可能是 SQL Server 数据库。

假设您正在寻找一种方法来指定特定数据容器中的分区,最好的方法是使用:

use select code partitioncode, 'eol' datacontaineralias from ...

这与获取以下结果相同:

select 'use ' || lst from ( select listagg(code || '@' || eol') lst from ... )

并执行那个。

当然,当您连接了多个数据容器时,例如 Exact Online Belgium、荷兰以及 Loket 和 Nmbrs,您可以在一个 use 语句中提供它们。

关于exact-online - “使用选择”符号指定 Exact Online 数据容器的多个分区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46159641/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com