Krishna Jangid
Krishna Jangid

Reputation: 5410

Import and export single collection in mongo using cmd

i try to import database collection but i found import whole database not single collection

mongorestore -d db_name dump_folder_path

so here is solution to import and export single collection in mongodb cmd

Upvotes: 1

Views: 1786

Answers (1)

Krishna Jangid
Krishna Jangid

Reputation: 5410

For Import

mongoimport --db Mydatabase --collection mycollection --drop --file ~/var/www/html/collection/mycollection.json

For Export

mongoexport --collection=mycollection --db=Mydatabase --out=/var/www/html/collection/mycollection.json

Hope this works :)

Upvotes: 2

Related Questions