Download The Definitive Guide to MongoDB: A complete guide to dealing by Peter Membrey, David Hows, Eelco Plugge, Tim Hawkins PDF

By Peter Membrey, David Hows, Eelco Plugge, Tim Hawkins

The Definitive consultant to MongoDB, moment version, is up to date for the newest model and comprises all the most modern MongoDB positive aspects, together with the aggregation framework brought in model 2.2 and hashed indexes in model 2.4. MongoDB is the most well-liked of the "Big Data" NoSQL database applied sciences, and it's nonetheless turning out to be. David Hows from 10gen, in addition to skilled MongoDB authors Peter Membrey and Eelco Plugge, supply their services and event in instructing you every little thing you must understand to turn into a MongoDB professional.

Show description

Read or Download The Definitive Guide to MongoDB: A complete guide to dealing with Big Data using MongoDB (2nd Edition) PDF

Best databases books

Database Design: Know It All

This booklet brings the entire parts of database layout jointly in one quantity, saving the reader the time and fee of constructing a number of purchases. It consolidates either introductory and complex themes, thereby overlaying the gamut of database layout method ? from ER and UML recommendations, to conceptual facts modeling and desk transformation, to storing XML and querying relocating items databases.

Oracle Call Interface. Programmer's Guide

The Oracle name Interface (OCI) is an software programming interface (API) that enables functions written in С or C++ to engage with a number of Oracle database servers. OCI provides your courses the potential to accomplish the entire variety of database operations which are attainable with an Oracle database server, together with SQL assertion processing and item manipulation.

Oracle Warehouse Builder 11g: Getting Started

This easy-to-understand educational covers Oracle Warehouse Builder from the floor up, and faucets into the author's vast event as a software program and database engineer. Written in a calm type with step by step factors, plenty of screenshots are supplied through the booklet. there are many information and beneficial tricks all through that aren't present in the unique documentation.

Extra info for The Definitive Guide to MongoDB: A complete guide to dealing with Big Data using MongoDB (2nd Edition)

Example text

Let's call the same SQL statement with hints 'HINTSQL' 2. Create the OUTLINE for ORIGINALSQL 3. Create the OUTLINE for HINTSQL 4. Exchange the OUTLINE plan between the two OUTLINES 5. Drop the OUTLINE for HINTSQL 6. Now the OUTLINE plan for ORIGINALSQL is the same as the execution plan of HINTSQL which uses HINTs. Only the point 5 (Exchange the OUTLINE plan between the two OUTLINEs) is detailed below. The rest of the steps are covered in the bulk of the paper. OL$HINTS SET OL_NAME=DECODE(OL_NAME,'HINTSQL','ORIGINALSQL','ORIGINALSQL','HINTSQL') WHERE OL_NAME IN ('HINTSQL','ORIGINALSQL'); Commit; Example Let’s look at an example using the SCOTT schema using the example schema objects.

All rights reserved. 0 - Production PAGE 27 COPYRIGHT © 2003 RAMPANT TECHPRESS. ALL RIGHTS RESERVED. 06 via conventional path import done in US7ASCII character set and US7ASCII NCHAR character set import server uses WE8ISO8859P9 character set (possible charset conversion) . importing OUTLN's objects into OUTLN . importing table "OL$" 2 rows imported . importing table "OL$HINTS" 17 rows imported Import terminated successfully without warnings. Of course you could have also imported the tables into a different user and then used an INSERT using a SELECT to add the outlines if you wanted to retain the outlines already in production.

OL$HINTS SET OL_NAME=DECODE(OL_NAME,'HINTSQL','ORIGINALSQL','ORIGINALSQL','HINTSQL') WHERE OL_NAME IN ('ORIGINALSQL','HINTSQL'); PAGE 23 COPYRIGHT © 2003 RAMPANT TECHPRESS. ALL RIGHTS RESERVED. ROBO BOOKS MONOGRAPH STABILIZING EXECUTION PLANS IN ORACLE commmit; Please note that the outline names used (ORIGINALSQL and HINTSQL) must be unique. Now under the SCOTT user, drop the temporary OUTLINE HINTSQL. DNAME; The plan for this SQL is now the same access plan as the SQL with HINTS. 0 1 2 3 4 5 0 1 2 3 2 SELECT STATEMENT Optimizer=CHOOSE SORT (GROUP BY) NESTED LOOPS (OUTER) TABLE ACCESS (BY INDEX ROWID) OF 'DEPT' INDEX (RANGE SCAN) OF 'I_DEPT$LOC' (NON-UNIQUE) TABLE ACCESS (FULL) OF 'EMP' Moving OUTLINES from One DB to Another A user may want to copy OUTLINEs from one database to another, for example, to copy the outlines of an application from a test database to a production database.

Download PDF sample

Rated 4.61 of 5 – based on 19 votes