使用Azure Cosmos DB迁移工具从Azure Table API导出到json

时间:2019-10-02 13:56:30

标签: azure azure-cosmosdb data-migration cosmos

我想将数据从Cosmos Table API迁移到json文件。

我已从门户复制了PRIMARY CONNECTION STRING,这是我尝试使用迁移工具运行的命令:

dt.exe /s:DocumentDB /s.ConnectionString:"PRIMARY CONNECTION STRING" /s.Collection:application /t:JsonFile

OR:

dt.exe /s:DocumentDB /s.ConnectionString:"PRIMARY CONNECTION STRING;Database=TablesDB" /s.Collection:application /t:JsonFile

我收到此错误:

严重错误:DocumentDB帐户端点URL应该作为连接字符串的一部分提供

我想念什么?

1 个答案:

答案 0 :(得分:0)

  

严重错误:应提供DocumentDB帐户端点URL为   连接字符串的一部分

基于此错误,连接字符串中缺少帐户网址。您可以按照以下link中的示例进行操作:

  

dt.exe / s:JsonFile /s.Files:.\Sessions.json / t:DocumentDBBulk   /t.ConnectionString:"AccountEndpoint=;AccountKey=;Database =;“

请检查连接字符串中的AccountEndpoint=,然后重试。