->
Oreilly - MongoDB Essentials - A Complete MongoDB Guide - 9781789952438
Oreilly - MongoDB Essentials - A Complete MongoDB Guide
by Bogdan Stashchuk | Released November 2018 | ISBN: 9781789952438


A Complete MongoDB Guide and MongoDB Shell.About This VideoLearn how to use MongoDB Shell, Robo 3T (Robomongo), MongoDB Compass for database management.You will be directed through the most important features with good examples, consistency and detailed explanations.In DetailIn this course on MongoDB and MongoDB Shell, you'll learn:Installation of the MongoDB which will be performed on the Local computer (Mac or Windows), Dedicated or VPS server, MongoDB Atlas - Cloud MongoDB Software as a Service.You will also install graphical interfaces for MongoDB management: such as Robo 3T (previously Robomongo) and MongoDB Compass.Learn how to work in MongoDB Shell. We will discuss and explore JavaScript Engine that is used in MongoDB.Study primary MongoDB data types - Strings, Numbers, Arrays, Objects, and Dates etc. We will talk about JSON and BSON data types and discuss the difference between them.Perform all sorts of CRUD (Create, Read, Update and Delete) Operations.Study in-depth MongoDB queries and query language. Different query operators such as $or, $and, $lt, $gt, $type, $in will be deeply covered.MongoDB Aggregation frameworkMongoDB Indexes and UtilitiesThis course is perfect for anyone who wants to quickly get up-to-speed on MongoDB.All the code and supporting files for this course are available at: https://github.com/PacktPublishing/MongoDB-Essentials---A-Complete-MongoDB-Guide Show and hide more
  1. Chapter 1 : Course Navigation and Practice Tasks Overview
    • WINDOWS ONLY - Install "cmder" 00:00:28
  2. Chapter 2 : Introduction to MongoDB
    • Introduction Module Overview 00:00:41
    • Document Database Overview 00:01:49
    • Understanding JSON 00:04:24
    • BSON 00:00:50
    • Conversion between JSON and BSON 00:01:36
    • Extended JSON Modes 00:02:50
    • MongoDB Structure 00:01:29
    • MongoDB Architecture 00:01:06
    • MongoDB Remote Management 00:01:55
    • MongoDB Introduction Summary 00:00:43
  3. Chapter 3 : MongoDB Installation Options
    • Installation Introduction 00:00:41
    • Installation options 00:03:14
  4. Chapter 4 : Installing MongoDB on the local computer (Mac or Windows)
    • Installing on the Mac 00:05:52
    • Launch MongoDB as a service on the Mac 00:03:23
    • Installing on Windows 00:05:30
  5. Chapter 5 : Installing MongoDB on the Dedicated or VPS server
    • Hosting Services Overview 00:01:20
    • Launch Amazon EC2 server 00:03:57
    • Installing MongoDB on the Ubuntu Server 00:04:32
    • Configure MongoDB network access 00:04:20
    • Allow external access to the server 00:01:54
    • Create MongoDB Admin user 00:02:52
    • Connecting to MongoDB 00:03:33
  6. Chapter 6 : Using MongoDB as a Service (Cloud MongoDB)
    • Introduction to MongoDB Cloud 00:02:49
    • Create MongoDB Atlas Cluster 00:03:02
    • Verify connection to the Cloud MongoDB Replica Set 00:12:03
  7. Chapter 7 : Installing GUI Tools for MongoDB Management
    • GUI tools Overview 00:02:31
    • Install and Configure MongoDB Compass 00:06:31
    • Install and Configure Robo 3T (Robomongo) 00:10:13
  8. Chapter 8 : Introduction to the MongoDB Shell
    • Introduction to the MongoDB Shell 00:00:20
    • Setup Overview 00:02:22
    • MongoDB Shell JavaScript Engine 00:04:05
    • Exploring MongoDB Server and Shell versions 00:04:32
    • Getting help in the MongoDB shell 00:03:25
    • MongoDB Shell JavaScript Syntax 00:04:07
    • Arguments in the MongoDB Method 00:02:51
    • MongoDB Shell Module Summary 00:00:52
  9. Chapter 9 : Primary MongoDB Data Types
    • Introduction to the MongoDB Types 00:00:24
    • Most Common MongoDB BSON Types 00:02:18
    • Types Syntax in Shell Mode 00:06:22
    • BSON Type Identifiers 00:01:14
    • _id 00:01:32
    • ObjectId 00:04:11
    • Date and ISODate 00:02:52
    • Convert dates to ISODate Format 00:03:15
    • Storing proper Number Types in BSON 00:04:18
    • MongoDB Data Types Module Summary 00:01:01
  10. Chapter 10 : Basic Create, Read, Update and Delete (CRUD) Operations
    • Introduction to the CRUD Module 00:00:23
    • Introduction to the CRUD Operations 00:01:28
    • Exploring Databases and Collections 00:05:15
    • Create and Delete Databases and Collections 00:12:08
    • Insert Methods Overview 00:02:13
    • insert() 00:07:30
    • insertOne() 00:02:45
    • insertMany() 00:02:27
    • Insert Document with different Value Types 00:06:39
    • Duplicate _id Error 00:03:49
    • Reading Documents Overview 00:01:43
    • Cursor 00:02:48
    • How Cursor works in find() 00:02:34
    • Generating Sample Set of Documents 00:07:59
    • Iterate Cursor in MongoDB Shell 00:01:52
    • Difference between Batch Size and Iterator Size 00:03:05
    • Change MondoDB Shell Iterator size 00:01:13
    • batchSize() 00:06:14
    • Cursor iteration using next() and hasNext() 00:07:59
    • forEach() and toArray() 00:06:29
    • count(), limit(), skip() and sort() 00:05:09
    • Chaining sort(), limit() and skip() 00:04:32
    • findOne() 00:02:30
    • CRUD Operations Module Summary 00:00:52
  11. Chapter 11 : MongoDB Queries
    • Introduction to MongoDB Queries 00:00:37
    • Insert Sample Documents 00:03:29
    • Empty Query 00:01:37
    • Equality Query 00:03:41
    • Introduction to Operators 00:01:01
    • Comparison Operators $eq, $neq, $lt, $gt 00:07:15
    • $in and $nin 00:01:47
    • $and 00:08:12
    • $or 00:04:31
    • Embedded Documents 00:04:50
    • Query Arrays by Specific Value 00:03:13
    • Array operators $all, $size 00:03:17
    • Query Array of Nested Documents 00:08:54
    • $elemMatch 00:04:54
    • $exists and $type 00:07:07
    • Fields Filtering 00:07:16
    • $regex 00:04:51
    • Queries Module Summary 00:00:40
  12. Chapter 12 : Updating Documents
    • Introduction to the Document Updates 00:01:24
    • Create Sample Documents 00:02:36
    • Update Methods Syntax 00:01:03
    • $set 00:05:20
    • $unset 00:03:59
    • update() one Document 00:04:01
    • update() multiple Documents 00:03:14
    • updateOne() 00:03:15
    • updateMany() 00:02:25
    • replaceOne() 00:03:50
    • Combine multiple update Operators 00:04:08
    • $rename 00:04:01
    • $currentDate 00:05:58
    • Array Update Operators 00:00:49
    • $push 00:05:55
    • $addToSet 00:05:23
    • $pop 00:03:14
    • $pull 00:04:32
    • $pullAll 00:04:00
    • Positional Operator $ 00:06:12
    • Positional Operator $ in Nested Documents 00:09:05
    • Positional Operator $ with $elemMatch 00:04:16
    • $inc 00:02:35
    • Update Module Summary 00:00:57
  13. Chapter 13 : Delete Operations
    • Introduction to the Delete Operations 00:00:47
    • Create temp DB, Collection and Documents 00:01:43
    • Delete Documents Overview 00:00:29
    • remove() 00:03:21
    • deleteOne() 00:02:23
    • deleteMany() 00:01:55
    • drop() Collection 00:01:38
    • dropDatabase() 00:02:11
    • Delete Operations in Robo 3T 00:02:45
    • Delete Module Summary 00:00:54
  14. Chapter 14 : Aggregation Framework
    • Introduction to the Aggregation Framework 00:00:58
    • Loading sample documents 00:01:03
    • Aggregation Process 00:01:53
    • aggregate () 00:02:22
    • Aggregation Stages Overview 00:02:19
    • Aggregation Expressions 00:03:08
    • $match 00:01:11
    • Aggregation Example 1 - $match 00:03:16
    • $group 00:03:56
    • Aggregation Example 2 - $group 00:03:22
    • Aggregation Example 3 - $group by nested Fields 00:02:12
    • Aggregation Example 4 - $group by multiple fields 00:03:52
    • Aggregation Example 5 - $match and $group 00:03:52
    • Aggregation Example 6 - swap $match and $group 00:03:04
    • Aggregation Example 7 - $group and $match 00:03:22
    • $count 00:01:18
    • Aggregation Example 8 - $count 00:01:28
    • Different documents count methods 00:04:08
    • Aggregation Example 9 - $group and $count 00:03:57
    • $sort 00:02:02
    • Aggregation Example 10 - $sort 00:02:43
    • Aggregation Example 11 - $group and $sort 00:04:37
    • $project 00:02:43
    • Aggregation Example 12 - $project 00:03:50
    • Aggregation Example 13 - $project with restructuring 00:04:25
    • $limit 00:01:24
    • Aggregation Example 14 - $limit, $match and $group 00:03:16
    • Arrays $group issue 00:01:19
    • $unwind 00:02:48
    • Aggregation Example 15 - $unwind and $project 00:03:36
    • Aggregation Example 16 - $unwind and $group 00:02:34
    • Accumulators 00:03:20
    • Accumulators Syntax 00:01:11
    • $sum 00:01:44
    • Aggregation Example 17 - $sum and $group 00:03:10
    • Aggregation Example 18 - $sum, $unwind and $group 00:02:18
    • $avg 00:01:02
    • Aggregation Example 19 - $avg and $group 00:02:08
    • Unary Operators 00:02:08
    • $type 00:00:45
    • Aggregation Example 20 - $type and $project 00:03:20
    • $out 00:01:18
    • Aggregation Example 21 - $out 00:02:48
    • allowDiskUse Option 00:02:13
    • Aggregation Module Summary 00:00:49
  15. Chapter 15 : Indexes
    • Introduction to Indexes 00:00:24
    • Indexes Overview 00:01:20
    • Index Creation Process 00:02:20
    • B-tree and how index works 00:01:57
    • Default _id index 00:01:40
    • getIndexes() 00:01:46
    • Create new Index 00:02:57
    • Index Creation Options 00:01:06
    • Index Example 1 - Create Unique index 00:03:47
    • Index Example 2 - Create index in background 00:01:27
    • Index Example 3 - Index with custom name 00:01:44
    • Query Performance and explain() 00:01:27
    • Index Example 4 - Query performance with index 00:02:49
    • Index Example 5 - ExecutionStats with Index 00:02:22
    • Index Example 6 - Query performance without index 00:02:08
    • Index Example 7 - ExecutionStats without Index 00:02:24
    • Index Example 8 - ExecutionStats with RegExp 00:03:02
    • Indexes deletion 00:02:39
    • Indexes Summary 00:01:32
  16. Chapter 16 : Utilities
    • MongoDB Utilities Introduction 00:00:46
    • mongoexport 00:03:09
    • mongoexport Example 00:04:55
    • mongoimport 00:01:49
    • mongoimport Example 00:03:43
    • mongodump 00:01:47
    • mongodump Example 00:03:05
    • mongorestore 00:01:28
    • mongorestore Example 00:03:33
    • mongostat 00:01:18
    • mongotop 00:01:27
    • MongoDB Utilities Summary 00:00:43
  17. Chapter 17 : Wrap Up
    • Course Summary 00:00:15
  18. Show and hide more

    Oreilly - MongoDB Essentials - A Complete MongoDB Guide


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.




rss