Answers for "mongodb dump import"

0

import dump mongodb

mongorestore -d db_name /path/
mongorestore -d db_name -c collection_name /path/file.bson
Posted by: Guest on August-18-2020
3

mongodb import

mongodump -h <127.0.0.1>:<27017> -d <db> -u <user> -p <pw> -o ./
mongorestore ./
Posted by: Guest on May-24-2021

Browse Popular Code Answers by Language