Azure 数据工厂本地文件跳过 header 行

Azure data factory On premises file skip header row

目前我正在制作 Azure 数据工厂设置的原型,我的输入是 "on premises file",但是当复制 Activity 运行时,文件中的 header 行被复制到接收器 SQL 服务器 table。

在执行复制 Activity 时,有什么方法可以跳过 header 行吗?

如有任何帮助,我们将不胜感激。

我能想到的方法是在目标上执行存储过程,即副本 activity 中的(SQL 服务器接收器)。存储过程将跳过 header 行并处理剩余数据。

谢谢,Harish

如果您要从 Blob 存储复制数据并希望将其复制到 Azure 数据库 table,您始终可以修改管道以在属性部分中包含 skipHeaderLineCount,如下所示

  "properties": {
    "activities": [
        {
            "type": "Copy",
            "typeProperties": {
                "source": {
                    "type": "BlobSource",
                    "skipHeaderLineCount": 1
                },
                "sink": {
                    "type": "SqlSink",
                    "writeBatchSize": 0,
                    "writeBatchTimeout": "00:00:00"
                }
            },