文件输出中的NULLS是\ N,我希望它们为空

时间:2018-04-03 03:54:57

标签: azure azure-data-factory

我有一个从表中读取的datafactory,并将输出作为CSV存储到Blob存储。

我注意到,不是将NULL字段留空,而是插入NULL字符\ N ..现在,正在摄取此字符的外部系统无法处理\ N。

无论如何,在我的数据集中,我可以说将空值留空。

以下是我的数据集属性:

  "typeProperties": {
        "fileName": "MasterFile-{fileDateNameVariable}.csv",
        "folderPath": "master-file-landing",
        "format": {
            "type": "TextFormat",
            "columnDelimiter": ",",
            "firstRowAsHeader": true
        },
        "partitionedBy": [
            {
                "name": "fileDateNameVariable",
                "value": {
                    "type": "DateTime",
                    "date": "SliceStart",
                    "format": "yyyyMMdd"
                }
            }
        ]
    },

提前致谢。

1 个答案:

答案 0 :(得分:3)

您可以在设置Null value时将""设置为dataset。请参考我的测试。

表格数据:

enter image description here

输出数据集:

enter image description here

enter image description here

生成csv文件:

enter image description here

希望它对你有所帮助。