MongoDB學習筆記(5)–資料匯入匯出mongoexport

來源:互聯網
上載者:User
假設庫裡有一張user表,裡面有2條記錄,我們要將它匯出

 

常用匯出方法

[root@localhost bin]# ./mongoexport -d my_mongodb -c user -o user.dat
connected to: 127.0.0.1
exported 2 records
[root@localhost bin]# cat user.dat
{ "_id" : { "$oid" : "4f81a4a1779282ca68fd8a5a" }, "uid" : 2, "username" : "Jerry", "age" : 100 }
{ "_id" : { "$oid" : "4f844d1847d25a9ce5f120c4" }, "uid" : 1, "username" : "Tom", "age" : 25 }
[root@localhost bin]#

參數說明

-d  指明使用的庫,  本例中為” my_mongodb”-c  指明要匯出的表,  本例中為”user”

-o  指明要匯出的檔案名稱,  本例中為”user.dat”
從上面可以看到匯出的方式使用的是 JSON的樣式

匯出CSV格式的檔案

[root@localhost bin]# ./mongoexport -d my_mongodb -c user  --csv -f uid,username,age -
user_csv.dat
connected to: 127.0.0.1
exported 2 records
[root@localhost bin]# cat user_csv.dat
uid,username,age
2,"Jerry",100
1,"Tom",25
[root@localhost bin]#

資料匯入

匯入json資料

[root@localhost bin]# ./mongoimport -d my_mongodb -c user user.dat
connected to: 127.0.0.1
imported 2 objects
[root@localhost bin]#

匯入CSV資料

[root@localhost bin]# ./mongoimport -d my_mongodb -c user  --type csv --headerline --file
user_csv.dat
connected to: 127.0.0.1
imported 3 objects
[root@localhost bin]#參數說明
  -type  指明要匯入的檔案格式
  -headerline  批明不匯入第一行,因為第一行是列名
  -file   指明要匯入的檔案路徑

  

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.