Created
May 5, 2017 22:22
-
-
Save BKeanu1989/28c2f8c7f80701b0bc8bfc5c705488fa to your computer and use it in GitHub Desktop.
mongodb_notes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.createUser( | |
{ | |
user: "XXX", | |
pwd: "XXX", | |
roles: [ { role: "root", db: "admin" } ] | |
} | |
) | |
mongoimport -u 'ACTUALUSERNAME' -p 'PASSWORD' --authenticationDatabase admin -d DATABASE -c COLLECTION --type csv --file FILEPATH.csv --headerline | |
db.inventory.update( | |
{ item: "MNO2" }, | |
{ | |
$set: { | |
category: "apparel", | |
details: { model: "14Q3", manufacturer: "XYZ Company" } | |
}, | |
$currentDate: { lastModified: true } | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment