How to Import .bson file format on mongodb -


i've exported database on server using mongodump command , dump stored in .bson file. need import in local server using mongorestore command. it's not working. correct mongorestore command , other tools restore db?

it's simple import .bson file:

mongorestore -d db_name -c collection_name path/file.bson 

incase single collection.try this:

mongorestore --drop -d db_name -c collection_name path/file.bson 

for restoring complete folder exported mongodump:

mongorestore -d db_name path/ 

Comments

Popular posts from this blog

javascript - Iterate over array and calculate average values of array-parts -

ASP.NET Javascript: window.open won't work twice -

jquery - Opera does not change the height of the page. Why? -