【发布时间】:2018-04-03 15:25:39
【问题描述】:
我有一个从表中读取数据并将输出作为 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"
}
}
]
},
提前致谢。
【问题讨论】:
-
查看文档我看到了一个例子:“NullValue”:“NaN”,我想知道“NullValue”:“”是否可以工作