Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

Im Folgenden erhalten Sie einen kurzen Einstieg in das Mongo Management Studio Im Folgenden erhalten Sie einen kurzen Einstieg in das Mongo Management Studio und werden mit den wichtigsten Funktionen vertraut gemacht. Als Basis dient hierbei die lokale Version. Außerdem gehen wir davon aus, dass Sie Zugriff auf eine Mongo Datenbank haben. Wir verwenden die Collection zipcode als Vorlage.

...

  • Download the for your system required version of Mongo Management Studio
  • Run the setup routine
  • Start the application

Setting the English language

  • Click the gear icon next to the button "Connect"
  • It will open the application settings
  • In the first selection boxselect "English" as language

Connect

  • Click on the button "Connect"
  • Enter in the field "Server Connection" the connection data for your Mongo database (for example localhost)
  • Click "Save and connect"

...

  • Download the collection zipcode (http://media.mongodb.org/zips.json)
  • Click with the right mouse button on the demo database and select Import documents
  • Insert "zipcode" as name of the destination collection
  • Drag the "zips.json" file in the field for the file upload
  • Click the "Import"-button

...

  • Click in the database "demo" on the collection "zipcode"
  • Switch to table view
  • Search for the city of CHESTER. For this enter following query in the search window
Codeblock
themeEmacs
languagejs
city: 'CHESTER'
  • Starten Sie die Abfrage mit Klick auf den Button "Ausführen" oder durch die Tastenkombination Run the query by clicking on the "Run"-button or by the keyboard shortcut CMD + ENTER (MAC) oder or CTRL + ENTER (Windows / Linux)
  • Sortieren Sie das Ergebnis nach der Spalte Sort the results by the column "pop" (population)

Datensatz bearbeiten

  • Wählen Sie einen Datensatz und klicken Sie das Icon für "Datensatz bearbeiten"
  • Ändern Sie das Feld "city" in "CHESTER123"
  • Klicken Sie "Speichern"

Datensatz erstellen

...

Edit document

  • Select a document and click the icon for "Edit document"
  • Change the field "city" to "CHESTER123"
  • Click "Save"

Create document

  • Click the button "Add document"
  • Input the following record:
Codeblock
themeEmacs
languagejs
{city: 'Demo123city',pop: 999}
  • Klicken Sie Click "SpeichernSave"

Suchen mit Regex

...

Querying with regex

  • Search for all the cities containing 123
Codeblock
themeEmacs
languagejs
city: /123/

...