Answers for "how to import data mongodb"

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
0

import data to mongodb

mongoimport --jsonArray --db YourDatabase --collection YourCollection --file Yourfile.json
Posted by: Guest on May-26-2021

Code answers related to "how to import data mongodb"

Browse Popular Code Answers by Language