I'm using the Microsoft Data migration tool to import from the Azure Cosmos Db container and export the content to a local JSON file.
I verified the connection string and it is successfully able to make connection with the database.
The query string is : SELECT * FROM ContainerName; Since I want all data.
However I'm facing the following error:
Edit:
The sample JSON that I'm trying to export:
[ { "id": "1", "SId": "101", "SName": "ABC" }, { "id": "2", "SId": "102", "SName": "XYZ" } ]
I've imported this JSON to Cosmos DB using the code on this link.
Please help me regarding this. Thank you.




