【发布时间】:2018-02-20 15:00:49
【问题描述】:
我正在尝试将数据从 azure sql 数据库复制到 Azure Blob 存储。
来源:Azure SQL 数据库。 目标:Azure Blob 存储。
"typeProperties": {
"fileName": "MyFile.csv.zip",
"folderPath": "myfolderpath/",
"format": {
"type": "TextFormat",
"columnDelimiter": ",",
"nullValue": "",
"firstRowAsHeader": false
},
"compression": {
"type": "ZipDeflate",
"level": "Fastest"
}
},
Zip 文件已完美创建,但它包含提取后自动生成的文件名(不是 MyFile.csv)。
当我使用 GZip 压缩时,.gz 文件包含具有相同文件名的文件,例如 MyFile.csv
我阅读了documentation,但找不到任何东西。
有人遇到过同样的问题吗?请指教。
【问题讨论】:
标签: azure azure-data-factory azure-blob-storage