您可以使用 Data Replicator 或通过本机平台请求发送手工 OData 查询,例如:
insert into NativePlatformScalarRequests
( url
, orig_system_group
)
select replace('https://start.exactonline.nl/api/v1/{division}/financial/Journals?$select=BankAccountIBAN,BankAccountDescription&$orderby=BankAccountIBAN desc&$top=5', '{division}', code)
, 'MYSTUFF-' || code
from systempartitions@datadictionary
limit 100 /* First 100 divisions. */
create or replace table exact_online_download_journal_top5@inmemorystorage
as
select jte.*
from ( select npt.result
from NativePlatformScalarRequests npt
where npt.orig_system_group like 'MYSTUFF-%'
and npt.result is not null
) npt
join jsontable
( null
passing npt.result
columns BankAccountDescription varchar2 path 'd[0].BankAccountDescription'
, BankAccountIBAN varchar2 path 'd[0].BankAccountIBAN'
) jte
从这里开始,您可以使用内存表,例如:
select * from exact_online_download_journal_top5@inmemorystorage
当然,您也可以“插入 sqlserver”。