将 table 从 AzureDataLakeStore 复制到 ASQLServer 时,字符串字段出现在 ASQLServer 中的双引号之间

when copying table from AzureDataLakeStore to ASQLServer string fields appear between double quotes in ASQLServer

我在 AzureDataLake 中有一个 table,在 AzureSQLServer 中定义了一个 table。 管道中的一项活动将一个活动复制到另一个活动。 但是,由于某种原因,字符串字段出现在双引号之间 screenshot of what I get

当我在 DataLakseStoreAnalytics 中进行预览时,table 看起来不错,它也被复制了 see here

有什么线索吗? 这可能是一些非常基础的东西,但刚刚开始使用 Azure

你的源文件格式是什么?它有 " 吗? 在您的输入数据集中,在格式部分,您可以尝试添加

"typeProperties": {
        "format": {
            "quoteChar": "\""
        }

}