Answers for "mongodb import bson"

1

import bson to mongodb

mongorestore --drop -d db_name -c collection_name /path/file.bson
Posted by: Guest on June-26-2021
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

Code answers related to "mongodb import bson"

Browse Popular Code Answers by Language