MongoDB - Rockmongo - Overview - Query - Import, export - Execute/Command line.

Slides:



Advertisements
Similar presentations
Day 9. SELECT INSERT UPDATE DELETE » The standard UPDATE statement. UPDATE table SET field1=val1, field2=val2 WHERE condition » Multiple table UPDATE.
Advertisements

Using the ATTENDANCE MODULE of the SMS. How to Enter the Students Attendance in SMS.
Why is that LOV in the screen not returning me desired value?
User Query Control An Enhancement For AS/400 Query On The IBM iSeries from  Copyright I/O International, 2005 Skip Intro.
Test practice Multiplication. Multiplication 9x2.
The Basics.  Vender Menu  Vendor Maintenance - Change, Delete and add a Vendor  Inquiry Options  Invoice Menu  Add – How to add invoices for invoice.
User Manual STUDENT AFFAIR MODULE V1.0. CONTENT  MAIN INTERFACE  STUDENT RECORD  How to add new student? How to add new student?  How to edit student.
The University of Akron Dept of Business Technology Computer Information Systems The Relational Model: Query-By-Example (QBE) 2440: 180 Database Concepts.
Class 4 PHP MySQL Robert Mudge Reference:
VICTORIA UNIVERSITY OF WELLINGTON Te Whare Wananga o te Upoko o te Ika a Maui SWEN 432 Advanced Database Design and Implementation MongoDB Read Lecturer.
VICTORIA UNIVERSITY OF WELLINGTON Te Whare Wananga o te Upoko o te Ika a Maui SWEN 432 Advanced Database Design and Implementation MongoDB Write Lecturer.
Integrating Word, Excel, Access, and PowerPoint
Microsoft Access 2013 Build User-Friendly Database Systems Chapter 7.
Create Forms Lesson 5. Software Orientation Creating Forms A form is a database object –enter, edit, or display data from a table or query Providing.
Session Title: Using SQL and PL/SQL for Queries and Reporting Presented By: Stephen Frederic Institution: IHL September 16, 2013.
Beginning Databases with JDBC Mike Bradley Adapted from and notes by Kevin Parker, Ph.D.
Web Application Development. Tools to create a simple web- editable database QSEE MySQL (or PHPMyAdmin) PHP TableEditor.
1 MySQL and phpMyAdmin. 2 Navigate to and log on (username: pmadmin)
Weeding in ALEPH Library Staff Training © South Dakota Library Network, 2013 ©Ex Libris (USA), 2011 Modified for SDLN Version
Web Design: Basic to Advanced Techniques Fall 2010 Mondays 7-9pm 200 Sutardja-Dai Hall Databases & SQL Lecture Code:
Exploring Microsoft Access Chapter 4 Relational Databases, External Data, Charts, and the Switchboard.
MAIL MERGING IN MICROSOFT PUBLISHER CREATING LABELS AND DOCUMENTS FOR MULTIPLE PEOPLE AT ONCE.
MySQL Databases & PHP Integration Using PHP to write data to, and retrieve data from, a MySQL database.
SYST Web Technologies SYST Web Technologies Databases & MySQL.
Access Class Outline Data Organization Tables Import and Export of Data Queries Select Calculate Values Aggregation (Count, Sum) Create Append Delete Crosstab.
More about Databases. Data Entry through Forms Table View (Data sheet view) is useful for data entry of new records But sometimes customization would.
2 Derek Kalm Pearson Government Solutions Francine Reeves Performance & Accountability Improvement Queries: How To Get Started.
Session Title: Using SQL and PL/SQL for Queries and Reporting Presented By: Stephen Frederic Institution: IHL September 16, 2014.
What is the last executed Query on the block?. Why does a execute query on the block not return any records back (D2K in EBS) After executing the query.
® Microsoft Office 2013 Access Maintaining and Querying a Database.
Introduction to Views Stanford Drupal Camp April 6, 2013.
THE WEBMASTERS: SENG + WAVERING.  On account of construction, we will be having class in room 1248 next week.
PHP getting data from a MySQL database. Replacing XML as data source with MySQL Previously we obtained the data about the training session from an XML.
MongoDB - Overview - Doctrine ODM - Symfony2 with Doctrine ODM.
(SQL - Structured Query Language)
NSF DUE ; Wen M. Andrews J. Sargeant Reynolds Community College Richmond, Virginia.
Session Session 10 Queries: Powerful and flexible tools that anyone can use.
ACADEMIC COURSE SCHEDULE Assigning Multiple Instructors to a Section Using SSASECT.
TEISS Interface Review Melinda Ronca-Battista, ITEP.
Introduction to MongoDB. Database compared.
Microsoft Access By Ritesh Sharma. Introduction Microsoft Access is a desktop database program that enables you to enter, store, analyze,and present data.For.
Programming for the Web MySQL Command Line Using PHP with MySQL Dónal Mulligan BSc MA
Exam Friday April 11. MongoDB Specifics Find() to Query db.collection.find(, ) db.collection.find{{select conditions}, {project columns}) Selection conditions:
COM621: Advanced Interactive Web Development Lecture 10 PHP and MySQL.
The main menu options and their usage are: Dashboard This will display your main Dashboard ‘homepage’. In the top left of your Dashboard you’ll see some.
Presentation Title.
Presentation Title.
Working with Data Blocks and Frames
Microsoft Access 2016 Build User-Friendly Database Systems
A Recreational Guide James Barber.
Lecturer : Dr. Pavle Mogin
Access Maintaining and Querying a Database
Build User-Friendly Database Systems Chapter 7
Database Queries.
البرمجة بلغة الفيجول بيسك ستوديو
More about Databases.
Getting Started with MS Access
MongoDB Read/Write.
Accessing Your MySQL Database from the Web with PHP (Ch 11)
MongoDB Read/Write.
Group 1 Group 1 Group 1 Group 1 word word word word word word word word word word word word word word word word word word word word word word word.
Getting Started with FileMaker Pro
MongoDB Read/Write.
Using PHP with MySQL Part 3
How to delete a record in before and after screenshots
Required queries FdSc inICT Module 107.
Updating Databases With Open SQL
Presentation Title Your information.
Wings 2.0 Business Flow Reference
Updating Databases With Open SQL
Presentation transcript:

MongoDB - Rockmongo - Overview - Query - Import, export - Execute/Command line

Rockmongo - Overview PHP (~ phpMyAdmin) php/wiki/rock_mongo php/wiki/rock_mongo Basic

Rockmongo – Query Query ◦ Multiple (AND, OR) conditions ◦ Not equal conditions Contextual menu Limit: fields, records

AND OR REGEX { "organization.$id": ObjectId(“xxx"), "slug": {$regex: "o"} } { "slug": {$regex: "o"} } { $or : [ {"slug": "sos"}, {"slug": "st-goran"} ] } { "slug": {$in: ["sos","st-goran"]} }

Rockmongo Query & Update Query & Delete

Rockmongo - Execute //Cursor function () { var titles = ''; var blogs = db.Blog.find({slug:{$regex: ‘blog'}}); blogs.forEach( function(x) { titles += x.title}); return titles; } function () { var titles = ''; var blogs = db.Blog.find({slug:{$regex: 'blog'}}); blogs.forEach( function(x) { x.dustin = 12; titles += x.title; db.Blog.save(x); }); return titles; } function () { var titles = ''; var blogs = db.Blog.find({slug:{$regex: 'blog'}}); blogs.forEach( function(x) { x.dustin = getUniqedId(); titles += x.title; db.Blog.save(x); }); return titles; } function getUniqedId() { return new Date().getTime(); }