Answers for "mongodb export all collections of database as json"

0

how to export mongodb database to json

sudo mongoexport --db newdb -c restaurants --out newdbexport.json
Posted by: Guest on August-09-2020
1

How to export all collections in MongoDB?

mongodump --archive="my-local-db" --db=my


mongorestore --archive="my-local-db" --nsFrom='my.*' --nsTo='mynew.*'
Posted by: Guest on June-02-2021

Code answers related to "mongodb export all collections of database as json"

Browse Popular Code Answers by Language