skip to Main Content

How can I move mongodb all documents in one collection to another collection that has different schema?

There are 15,000 documents in collection This is old collection [ { "_id" : ObjectId("611f0b9f9964fea718ccea5f"), "quotationNO" : "Q-000001", "note": "21-8-2021<->send to DC<->John<#>21-8-2021<->OK<->Bob" } { "_id" : ObjectId("611f2afa9964fea718ccea9c"), "quotationNO" : "Q-000002", "note": "22-8-2021<->send to DC<->Bob" } ] This is new collection…

VIEW QUESTION
Back To Top
Search