1. 程式人生 > >mongodb轉json

mongodb轉json

從遠端資料表拉取資料到本地json檔案

mongoexport --host 遠端伺服器IP --port 遠端伺服器埠 --username 遠端資料庫使用者名稱 --password 遠端資料庫密碼 --db 資料庫名 --collection 資料表名 -q "{_id: ObjectId('')}"  --out /home/user/Public/table.json

將本地json檔案匯入到本地資料庫

mongoimport --db 本地資料庫名 --collection 本地資料表 --file ~/table.json --type json