0

在管道运行期间出现以下错误。

Operation on target ac_ApplyMapping failed: Column name or path 'StudentId' 
duplicated in 'source' under 'mappings'. Please check it in 'mappings'.

在复制活动中,我们正在应用以下映射。

{
    "type": "TabularTranslator",
    "mappings": [{
            "source": {
                "name": "StudentId",
                "type": "string"
            },
            "sink": {
                "name": "StudentId_Primary",
                "type": "string"
            }
        }, {
            "source": {
                "name": "StudentId",
                "type": "string"
            },
            "sink": {
                "name": "StudentId_Secondary",
                "type": "string"
            }
        }
    ]
}

有没有办法处理这种情况?

4

1 回答 1

0

您可以使用派生列转换来更改源中的列名称,然后映射到您的接收器。

于 2021-05-27T01:11:32.160 回答