我有一个从表中读取的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"
}
}
]
},
提前致谢。