0

我在 ADF 中有一个查找活动,从 Kusto(ADx) 表中读取行并将这些行写入另一个 ADx 表。

但是我遇到了命令问题。

管道:

在此处输入图像描述

查找活动:

Test_emg1
| project splitted=split(output, ',')
| mv-expand id=splitted[0]
|mv-expand Start=splitted[1]
| mv-expand End=splitted[2]
|project id,Start,End

更新 ADx 命令:

@concat('.set-or-append Test_final <| (',activity('Test__final').output')')

错误:

获取语​​法错误。

4

1 回答 1

0

我得到了答案。我刚刚修改了我的查询。喜欢。@concat('.set-or-append Test_final <| print(dynamic(',activity('Test__final').output')'))

现在它工作正常。

于 2021-10-08T14:43:44.160 回答