mongodb - Inserting JSON document into mongo error -
i'm trying insert twds1e1.json file mongodb through command prompt:
db.collections.insert( twds1e1.json ) but getting error:
twds1e1.json not defined.
mongo not thing, doing wrong here?
in command prompt directory path path mongoimport.exe available type commands
for normal json
mongoimport -d test -c docs --file example2.json for array type json
mongoimport --jsonarray -d test -c docs --file example2.json please see docs more information
Comments
Post a Comment