MongoDB學習筆記2--MongoDB資料庫中資料的匯入

來源:互聯網
上載者:User

1.匯入CSV格式的資料
 
   user.csv檔案的內容如下:
 
   _id,name,age
   ObjectID(4eed9f9ca939118694cf05e4),"ming",10
   ObjectID(4ef1f3cf3bd18218e6bdfa31),"lisi",20
 
 
 
  可以通過如下方式把user.csv中的資料匯入localdb資料庫的user集合中:
 
>mongoimport -d localdb -c user --type csv --file user.csv --headerline --upsert
 
 
 
2.匯入json格式的資料
 
   user.dat檔案中資料為json格式,內容為:
 
   { "_id" : "ObjectID(4eed9f9ca939118694cf05e4)", "name" : "ming", "age" : 10 }
   { "_id" : "ObjectID(4ef1f3cf3bd18218e6bdfa31)", "name" : "lisi", "age" : 20 }
 
可以通過以下方式匯入該資料:
 
>mongoimport -d localdb -c user < user.dat
 
 
 
3.參數含義
 
-d    指定把資料匯入到哪一個資料庫中
 
-c    指定把資料匯入到哪一個集合中
 
--type    指定匯入的資料類型
 
--file       指定從哪一個檔案中匯入資料
 
--headerline    僅適用於匯入csv,tsv格式的資料,表示檔案中的第一行作為資料頭
 
--upsert  以新增或者更新的方式來匯入資料

相關文章

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.