我正在尝试使用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 '/'.
我不明白,无法找到导致此问题的资源。
Database=https://xxxx.table.cosmosdb.azure.com:443/;
位错了。
Database
值应该是您迁移到Database
网址的DatabaseAccount
的名称。您需要将其更改为数据库的字母数字名称。