Skip to content

Instantly share code, notes, and snippets.

@BKeanu1989
Created May 5, 2017 22:22
Show Gist options
  • Save BKeanu1989/28c2f8c7f80701b0bc8bfc5c705488fa to your computer and use it in GitHub Desktop.
Save BKeanu1989/28c2f8c7f80701b0bc8bfc5c705488fa to your computer and use it in GitHub Desktop.
mongodb_notes
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