Azure 数据工厂未正确预览数据

问题描述 投票:0回答:1

我们遇到的情况是,ADF 不会预览 Excel 电子表格中的实际数据。正如您所看到的,Excel电子表格中有数据,但是当我们预览时,预览中没有显示任何数据。

enter image description here

我们的数据集如下。您会注意到正在连接到 .xlsx 电子表格的位置。为了预览数据,我们插入sheetName作为参数,但什么也没有出现

enter image description here

azure-data-factory
1个回答
0
投票

转到数据集 Json 并检查范围选项,如下所示:

"typeProperties": {
            "sheetName": {
                "value": "@dataset().Sheet",
                "type": "Expression"
            },
            "location": {
                "type": "AzureBlobFSLocation",
                "fileName": "second.xlsx",
                "fileSystem": "dec20excels"
            },
            "firstRowAsHeader": true,
            "Range": "A1:B1"
        }

尽管范围被提到为“A1:B1”,但它显示如下:

enter image description here

预览时得到的数据如下:

enter image description here

将Json中的范围去掉,尝试预览数据,你会得到如下图的数据:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.