In the following you get a short introduction to the Mongo Management Studio and will become familiar with the most important functions. The professional edition serves as the basis. In addition, we assume that you have access to a Mongo database. We use the zipcode collection as a template for our examples.
Installation
- Laden Sie die für ihr System benötige Version von Download the Mongo Management Studio herunter
- Führen Sie die Setup Routine aus
- Starten Sie die Anwendung
Deutsche Sprache einstellen
- Klicken Sie das Zahnrad Symbol neben den Button "Connect"
- Es öffnen sich die Anwendungseinstellungen
- Wählen Sie in der ersten Auswahlbox "Deutsch" als Sprache
Verbinden
- Klicken Sie den Button "Neue Verbindung"
- Geben Sie im Feld "Server-Verbindung" die Verbindungsdaten für ihre Mongo Datenbank ein (z.B. localhost)
- Klicken Sie "Speichern und Verbinden"
Erstellen der demo Datenbank
- Klicken Sie mit der rechten Maustaste auf den Namen des Mongo-Servers
- Wählen Sie im Popup-Menü "Datenbank hinzufügen"
- Geben Sie den Datenbankname "demo" ein und speichern sie
Import der zipcode Collection
- Laden Sie die Collection zipcode
- Klicken Sie mit der rechten Maustaste auf die Datenbank demo und wählen Sie "Datensätze importieren"
- Geben Sie als Namen der Ziel-Collection "zipcode" ein
- Ziehen Sie die Datei "zipcode.json" in den Bereich für den Datei Upload
- Klicken Sie "Importieren"
Abfragen von Daten
- Klicken Sie in der Datenbank demo auf die Collection zipcode
- Wechseln Sie in die Tabellenansicht
- Suchen Sie nach der Stadt CHESTER. Geben Sie dafür folgende Abfrage im Suchfenster einversion appropiate for your system
- Run the setup routine
- Start the application
Switch language to english
- Click the gear icon next to the button "Connect"
- It will open the application settings
- In the first checkbox, select "English" as language
Connect
- Click on the button "Connect"
- Enter the connection data for your Mongo database (for example localhost) into the field "Server Connection"
- Click "Save and connect"
Create a demo database
- Rightclick with the mouse onto the name of the Mongo server
- Select "Add database" in the popup menu
- Enter the database name "demo" and save it
Import the zipcode collection
- Download the collection zipcode
- Rightclick with the mouse button onto the demo database and select Import documents
- Insert "zipcode" as name of the destination collection
- Drag the "zips.json" file into the file upload field
- Click the "Import"-button
Querying data
- Click in the database "demo" onto the collection "zipcode"
- Switch to table view
- Search for the city of CHESTER. For this enter following query in the search window
Codeblock | ||||
---|---|---|---|---|
| ||||
{city: 'CHESTER'} |
- Starten Sie die Abfrage mit Klick auf den Ausführen-Pfeil oder durch die Tastenkombination Run the query by clicking on the "Run"-arrow-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 eine Zeile aus
- Doppelklicken Sie auf das Feld "city" und ändern Sie das Feld in "CHESTER123"
- Klicken Sie "Speichern"
- Alternativ können Sie das gesamte Dokument über das Stiftsymbol am Zeilenanfang bearbeiten
Datensatz erstellen
...
Edit a document
- Select a document and click the icon for "Edit document"
- Change the field "city" to "CHESTER123"
- Click "Save"
Create a document
- Click the button "Add document"
- Input the following record:
Codeblock | ||||
---|---|---|---|---|
| ||||
{city: 'Demo123city',pop: 999} |
- Klicken Sie Click "SpeichernSave"
Suchen mit Regex
...
Querying with regex
- Search for all the cities containing 123
Codeblock | ||||
---|---|---|---|---|
| ||||
{city: /123/} |
Löschen von Datensätzen
...
Deleting a document
- Click on the icon for "Delete document(s)" for the document with the city "Demo123city"
- Bestätigen Sie die Löschen Sicherheit's Abfrage mit "Ja"
Aggregation Abfrage
- Wählen Sie in der Symbolleiste mit dem Ausführbutton das Aggregation Framework aus
- Geben Sie im Suchfester folgende Abfrage einConfirm the deletion security's query with Yes
Querying with aggregation framework
- Select the aggregation framework in the toolbar
- Enter the following query in the search window
Codeblock | ||||
---|---|---|---|---|
| ||||
[{ $group: { _id : "$state", totalPop : { $sum : "$pop" } } }, { $match: { totalPop : { $gte : 10000000 } } }] |
- Man erhält als Ergebnis alle US Bundesstaaten mit mehr als 10 Millionen EinwohnernYou get a result of all U.S. states with more than 10 million inhabitants
MongoDB Shell Abfrage
...
Query
- Select the Mongo Shell Query in the toolbar
- Enter the following query in the search window
Codeblock | ||||
---|---|---|---|---|
| ||||
db.zipcode.stats() |
...
Kopieren der Collection
- Wählen Sie per Rechtsklick in der Collectionliste auf 'zipcode' "Kopieren" aus
- Wählen Sie "Collection innerhalb der Datenbank kopieren" aus
- Geben Sie als Namen You get the statistics of the collection zipcode as result
- Switch to the text view to see all the data at once
Copy a collection
- Select in the toolbar the button "Collection" and then "Copy"
- Select "Copy collection within the database"
- Enter "zipcode_copy" einKlicken Sie "Kopieren"as name of the new collection
- Click "Copy"