import a .bson file:
mongorestore -d db_name -c collection_name path/file.bson
import a .bson file (Incase only for a single collection)
mongorestore --drop -d db_name -c collection_name path/file.bson
For restoring the complete folder exported by mongodump:
mongorestore -d db_name path/
No comments:
Post a Comment