我正在使用Microsoft数据迁移工具从Azure Cosmos Db import
container
将export
的内容复制到本地JSON
文件中。
我验证了连接字符串,它成功地可以与数据库建立连接。
查询字符串为:SELECT * FROM ContainerName;
因为我需要所有数据。
但是我遇到以下错误:
编辑:
我要导出的示例JSON:
[{ “ id”:“ 1”, “ SId”:“ 101”, “ SName”:“ ABC” }, { “ id”:“ 2”, “ SId”:“ 102”, “ SName”:“ XYZ” } ]
我已使用JSON将此JSON导入Cosmos DB code on this link.
请帮助我。谢谢。