Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As someone new to Mongo, I am looking for a sample MongoDB database that I can import and play with. Something along the lines of world for mysql or Northwind for MSSQL.

Is there one? (I couldn't find any reference to one at http://www.mongodb.org nor did my googling help)

share|improve this question
There is currently no sample database available for MongoDB. It would not surprise me to see one in the future. I know that doesn't help you now, but people are listening :) – Gates VP Apr 19 '11 at 23:39

3 Answers

up vote 4 down vote accepted

For Windows users: Please follow the following steps to import from the json file if you are using windows 7:

  • Download the above mentioned JSON file and place it inside a folder (say d:\sample)
  • Open a command prompt, start the mongo server by going in to the bin directory and typing in mongoD
  • now take another command prompt and go to the bin directory again and write following command C:\mongodb\bin>mongoimport --db test --collection zips --file d:\sample\zips.json
  • The import would start working immediatly and at the end it would show some thing like this Thu Dec 19 17:11:22 imported 29470 objects

That's it!

share|improve this answer

I found this you can import the json data with:

mongoimport --db scratch --collection zips --file zips.json

I guess that you can import any json data that you find, it also supports csv and tsv. Hope this helps.

share|improve this answer
1  
great help.. thanks – Ayusman Apr 23 '12 at 22:05
1  
I'll just leave this here: json-generator.com – Oliver Salzburg Jan 31 at 15:08

You can create TPC-H benchmark data-sets and import them.

Example import for lineitem table:

./mongoimport -d test -c lineitem --type csv -f  l_orderkey,l_partkey,l_suppkey,l_linenumber,l_quantity,l_extendedprice,l_discount,l_tax,l_returnflag,l_linestatus,l_shipdate,l_commitdate,l_receiptdate,l_shipinstruct,l_shipmode,l_comment --file /home/metdos/mongo/tpc-h/tpch_2_13_0/lineitem.tbl
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.