Export and import data mongodb

Export the entire database:

mongodump.exe -d HF_DB -o hfdb 

 

Import entire database:

. \ Mongorestore.exe -h 127.0.0.1 d HF_DB ./hfdb/HF_DB

 

Single table:

mongoexport.exe Css_Cta_Tick_Db -d -c rb1905 -he test.json

Guess you like

Origin www.cnblogs.com/studyforever/p/11096839.html