mongodb安裝目錄bin路徑
d:\mongodb\bin
path編輯環境變數後面新增該目錄(注意加分號;)
測試
mongoimport -h localhost:27017 -d test -c topic e:/mongodboutput/topic.json
詳解:-h:資料庫 ip 與 埠,如 localhost:27017
-d:資料庫名,如 test
-c:指明要匯出或匯入的集合名(表名),如 topic
-o: 指明要匯出或匯入的檔名(要全路徑),如 e:/mongodboutput/topic.json 目錄不存在時會自動新建(檔案格式還可以是txt、xls、docs)
MongoDB匯入匯出資料
匯出json格式 mongoexport d test c t1 o users lisa downloads t1.dat d 指明使用的庫 c 指明要匯出的集合 o 指明要匯出的檔名 檢視t1.dat發現裡面的資料是json格式的。mongoexport d test c t1 q o user...
mongodb 資料匯出匯入
mkdir p data eclassweb mongodump h 172.16.0.181 u eclassuser p eclassuser123 d eclassweb o data eclassweb opt mongodb 3.4.20 bin mongodump h 172.16.0....
MongoDB匯入匯出資料
1.匯出資料 h 資料庫位址,mongodb 伺服器所在的 ip 與 埠,如 localhost 27017 d 指明使用的資料庫例項,如 test c 指明要匯出的集合,如 mycol f 資料庫中想要匯出的字段 csv檔案匯出用的 o 指明要匯出的檔名,如 e abc xing.csv 注意是檔...