使用数据迁移工具从Azure Cosmos DB导出到Json文件时出错

时间:2019-11-26 09:19:44

标签: azure export azure-cosmosdb

我正在使用Microsoft数据迁移工具从Azure Cosmos Db import containerexport的内容复制到本地JSON文件中。

我验证了连接字符串,它成功地可以与数据库建立连接。

查询字符串为:SELECT * FROM ContainerName;因为我需要所有数据。

但是我遇到以下错误:

enter image description here

编辑:

我要导出的示例JSON:

[{     “ id”:“ 1”,     “ SId”:“ 101”,     “ SName”:“ ABC”   },   {     “ id”:“ 2”,     “ SId”:“ 102”,     “ SName”:“ XYZ”   } ]

我已使用JSON将此JSON导入Cosmos DB code on this link.

请帮助我。谢谢。

1 个答案:

答案 0 :(得分:1)

我无法单方面再现您的问题,因此请参考我的工作步骤:

源配置:

enter image description here

接收器配置:

enter image description here

json文件中的结果:

enter image description here

如果您已经通过了连接字符串的验证,则可以尝试将问题锁定在错误文件中。

enter image description here


仅供参考:

最后,问题是由sql末尾的附加符号;引起的。请删除它,因为该工具无法识别它。