DocumentDB Migration Tool - 显示的资源名称包含无效字符'/'

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

我正在尝试使用DocumentDB Migration Tool,以便从CSV文件中顺序地将条目插入到CosmosDB数据库中。参赛作品如下:

Id, Description, BoxId, BoxDescription, BoxWidth, BoxHigh, BoxDepth, Unit
125072,...,1151029,...,860,635,500,...

我完成了Docs中的过程,成功验证了连接字符串,然后:

显示的生成命令如下所示:

/ErrorDetails:All /s:CsvFile /s.Files:C:\\Users\\...\\Desktop\\Dataprod.csv /t:DocumentDB /t.ConnectionString:AccountEndpoint=https://xxxx.documents.azure.com:443;AccountKey=...;Database=https://xxxx.table.cosmosdb.azure.com:443/; /t.ConnectionMode:Gateway /t.IdField:Id /t.UpdateExisting /t.Collection:ProductCollection /t.PartitionKey:product_key

每当我运行导入步骤时,我都会收到以下错误:

The resource name presented contains invalid character '/'.

我不明白,无法找到导致此问题的资源。

azure migration azure-cosmosdb
1个回答
0
投票

Database=https://xxxx.table.cosmosdb.azure.com:443/;位错了。

Database值应该是您迁移到Database网址的DatabaseAccount的名称。您需要将其更改为数据库的字母数字名称。

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