وب سایت تخصصی شرکت فرین
دسته بندی دوره ها
1

MongoDB Masterclass: Excel in NoSQL & Pass Certification!

سرفصل های دوره

Unlock the Power of MongoDB: Learn Data Modeling, Aggregations, Indexing Using Java, Python, C# and Node.js


1 - Installation and setup
  • 1 - Introduction to the course
  • 2 - Getting the best out of this course
  • 3 - Before Installing MongoDB
  • 4 - Installing Mongo on Mac
  • 5 - Installing Mongo on Windows

  • 2 - MongoDB Introduction
  • 6 - Section Introduction
  • 7 - What is a database and why do we need it
  • 8 - What is MongoDB and its benefits
  • 9 - NoSQL vs SQL
  • 10 - Terminologies in MongoDB
  • 11 - BSON and JSON
  • 12 - How does MongoDB work Lets discuss Architecture
  • 13 - Introduction to MongoDB Shell
  • 14 - Getting Handson with Mongo
  • 14 - resources mongodb introduction getting handson with mongo.zip
  • 15 - Section Summary

  • 3 - CRUD operations with MongoDB
  • 16 - Section Introduction
  • 17 - MongoDB Databases
  • 18 - Ways of inserting data into the database
  • 19 - Inserting single document
  • 19 - resources crud operations with mongodb inserting single document.zip
  • 20 - Inserting multiple documents
  • 20 - resources crud operations with mongodb inserting multiple documents.zip
  • 21 - Retrieving a specific document
  • 22 - Challenge Lets try writing a query
  • 23 - Updating the single document
  • 24 - Updating multiple documents
  • 25 - Section Summary

  • 4 - Writing advanced queries with MongoDB
  • 26 - Section Introduction
  • 27 - Query Operators in MongoDB
  • 27 - query and projection operators.zip
  • 27 - update operators.zip
  • 28 - Using query operators to write advanced conditions
  • 29 - Challenge Query Operators
  • 30 - AND with Query Operators
  • 30 - resources writing advanced queries with mongodb and with query operators.zip
  • 31 - OR with Query Operators
  • 32 - Challenge Writing OR conditions
  • 33 - AND with OR
  • 34 - Embedded documents
  • 35 - Querying embedded documents
  • 36 - Querying arrays in MongoDB documents
  • 37 - Challenge Arrays
  • 38 - Using Query operators with MongoDB arrays
  • 39 - MongoDB Projections
  • 40 - Challenge Projections
  • 41 - Working with Cursors in MongoDB
  • 42 - Section Summary

  • 5 - Update operations in depth
  • 43 - Section Introduction
  • 44 - Update operators currentData and inc
  • 44 - resources update operations in depth update operators currentdata and inc.zip
  • 44 - update operators.zip
  • 45 - CHALLENGE Update Operators
  • 46 - Update operators min max and mul
  • 47 - Update operators rename and unset
  • 48 - Upsert
  • 49 - Section Summary

  • 6 - Deleting documents from MongoDB database
  • 50 - Deleting a single document
  • 50 - resources deleting documents from mongodb database deleting a single document.zip
  • 51 - Deleting multiple documents

  • 7 - Working with GUI MongoDB compass
  • 52 - Section Introduction
  • 53 - What is MongoDB compass
  • 54 - Installing on MacOS
  • 55 - Installing on Windows
  • 56 - Connecting and exploring the interface
  • 57 - Databases in MongoDB Compass
  • 58 - Collections in MongoDB compass
  • 59 - Querying data
  • 60 - Section Summary

  • 8 - Modeling your data with MongoDB
  • 61 - Section Introduction
  • 62 - What is Data Modeling
  • 63 - Data types in MongoDB
  • 64 - Modeling your database
  • 65 - Embedded vs Linked
  • 66 - One to One Relationship and Patterns
  • 67 - One to Many
  • 68 - One to Many with References
  • 69 - One to Many Subset Pattern
  • 70 - Section Summary

  • 9 - Aggregation
  • 71 - Section Introduction
  • 72 - Aggregation in MongoDB
  • 73 - Aggregation Framework in MongoDB
  • 74 - Understanding MongoDB aggregation
  • 75 - Writing your first query using Aggregation Framework
  • 76 - Operators in aggregation
  • 77 - Grouping with sum avg
  • 78 - Finding minimum and maximum using min and max
  • 79 - Getting the first and last document
  • 79 - resources aggregation getting the first and last document.zip
  • 80 - Challenge Getting last date of job application
  • 81 - Using project to transform and get results
  • 82 - More on project
  • 83 - limit in aggregation
  • 84 - skip in aggregation
  • 85 - Working with lookup
  • 85 - resources aggregation working with lookup.zip
  • 86 - Using out
  • 87 - Section Summary

  • 10 - Indexes and performance improvement
  • 88 - Section Introduction
  • 89 - Evaluating query performance in MongoDB
  • 89 - resources indexes and performance improvement evaluating query performance in mongodb.zip
  • 90 - What is Indexing and Why do you need it
  • 91 - The Default Index
  • 92 - Challenge Retrieving indexes
  • 93 - Having index vs Without index
  • 94 - Creating indexes
  • 95 - Deleting an index
  • 96 - Index options
  • 97 - Indexes and their types
  • 98 - Compound indexes
  • 99 - Index Performance and ESR rule
  • 100 - Section Summary

  • 11 - MongoDB in Cloud with MongoDB Atlas
  • 101 - Section Introduction
  • 102 - What is MongoDB Atlas
  • 103 - Setting up your database in Atlas
  • 104 - Connecting via MongoDB compass
  • 105 - Connecting via shell
  • 106 - Interacting with your data
  • 107 - Creating database and collection in Atlas
  • 108 - Aggregation pipeline in Atlas
  • 108 - resources mongodb in cloud with mongodb atlas aggregation pipeline in atlas.zip
  • 109 - Section Summary

  • 12 - Drivers in MongoDB
  • 110 - Overview of different MongoDB Drivers
  • 110 - start developing with mongodb.zip

  • 13 - MongoDB with Python
  • 111 - Section Introduction
  • 112 - Creating your Python Project
  • 113 - Connecting to the database
  • 114 - Fetching all the documents
  • 114 - source code mongodb with python fetching all the documents.zip
  • 115 - Using query filters
  • 115 - source code mongodb with python using query filters.zip
  • 116 - Projections
  • 116 - source code mongodb with python projections.zip
  • 117 - Inserting your first document
  • 117 - source code mongodb with python inserting your first document.zip
  • 118 - Inserting many documents
  • 118 - source code mongodb with python inserting many documents.zip
  • 119 - Updating document
  • 119 - source code mongodb with python updating document.zip
  • 120 - Updating many documents
  • 120 - source code mongodb with python updating many documents.zip
  • 121 - Deleting documents
  • 121 - source code mongodb with python deleting documents.zip
  • 122 - Sort documents
  • 122 - source code mongodb with python sort documents.zip
  • 123 - Aggregation using Python
  • 123 - source code mongodb with python aggregation using python.zip
  • 124 - Connecting to the cloud database
  • 125 - Section Summary

  • 14 - MongoDB with Java
  • 126 - Section Introduction
  • 127 - Creating your Java Project
  • 128 - Connecting to the database
  • 129 - Fetching all the documents
  • 129 - source code mongodb with java fetching all the documents.zip
  • 130 - Filtering documents
  • 130 - source code mongodb with java filtering documents.zip
  • 131 - Projection using Java
  • 131 - source code mongodb with java projection using java.zip
  • 132 - Sorting documents using Java
  • 132 - source code mongodb with java sorting documents using java.zip
  • 133 - Inserting your first document
  • 133 - source code mongodb with java inserting your first document.zip
  • 134 - Inserting many documents
  • 134 - source code mongodb with java inserting many documents.zip
  • 135 - Updating document
  • 135 - source code mongodb with java updating document.zip
  • 136 - Updating many documents
  • 136 - source code mongodb with java updating many documents.zip
  • 137 - Delete one document
  • 137 - source code mongodb with java delete one document.zip
  • 138 - Delete many documents
  • 138 - source code mongodb with java delete many documents.zip
  • 139 - Aggregation using Java
  • 139 - source code mongodb with java aggregation using java.zip
  • 140 - Connecting to the cloud database
  • 141 - Section Summary

  • 15 - MongoDB with Nodejs
  • 142 - Section Introduction
  • 143 - Creating your Nodejs Project
  • 144 - Connecting to the database
  • 144 - source code mongodb with nodejs connecting to the database.zip
  • 145 - Fetching all the documents
  • 145 - source code mongodb with nodejs fetching all the documents.zip
  • 146 - Filtering documents
  • 146 - source code mongodb with nodejs filtering documents.zip
  • 147 - Projections
  • 147 - source code mongodb with nodejs projections.zip
  • 148 - Sorting documents
  • 148 - source code mongodb with nodejs sorting documents.zip
  • 149 - Inserting your first document
  • 149 - source code mongodb with nodejs inserting your first document.zip
  • 150 - Inserting many documents
  • 150 - source code mongodb with nodejs inserting many documents.zip
  • 151 - Updating document
  • 151 - source code mongodb with nodejs updating document.zip
  • 152 - Updating document with options
  • 152 - source code mongodb with nodejs updating document with options.zip
  • 153 - Updating many documents
  • 153 - source code mongodb with nodejs updating many documents.zip
  • 154 - Delete one documents
  • 154 - source code mongodb with nodejs delete one documents.zip
  • 155 - Delete many documents
  • 155 - source code mongodb with nodejs delete many documents.zip
  • 156 - Aggregation using Nodejs
  • 157 - Connecting to the cloud database
  • 158 - Section Summary

  • 16 - MongoDB with C
  • 159 - Section Introduction
  • 160 - Creating your C Project
  • 161 - Connecting to the database
  • 161 - source code mongodb with c connecting to the database.zip
  • 162 - Fetching all the documents
  • 162 - source code mongodb with c fetching all the documents.zip
  • 163 - Filtering documents
  • 163 - source code mongodb with c filtering documents.zip
  • 164 - Filtering based on multiple conditions
  • 164 - source code mongodb with c filtering based on multiple conditions.zip
  • 165 - Projections
  • 165 - source code mongodb with c projections.zip
  • 166 - Sorting documents
  • 166 - source code mongodb with c sorting documents.zip
  • 167 - Inserting your first document
  • 167 - source code mongodb with c inserting your first document.zip
  • 168 - Inserting many documents
  • 168 - source code mongodb with c inserting many documents.zip
  • 169 - Updating document
  • 169 - source code mongodb with c updating document.zip
  • 170 - Updating document with options
  • 170 - source code mongodb with c updating document with options.zip
  • 171 - Updating many documents
  • 171 - source code mongodb with c updating many documents.zip
  • 172 - Delete one documents
  • 172 - source code mongodb with c delete one documents.zip
  • 173 - Delete many documents
  • 173 - source code mongodb with c delete many documents.zip
  • 174 - Aggregation using C
  • 174 - source code mongodb with c aggregation using c.zip
  • 175 - Connecting to the cloud database
  • 176 - Section Summary

  • 17 - Getting MongoDB Certification
  • 177 - Overview of MongoDB certification

  • 18 - Extra Information Source code and other stuff
  • 178 - Source Codes.html
  • 179 - Bonus Lecture and Information
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    افزودن به سبد خرید
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    شناسه: 10867
    حجم: 6406 مگابایت
    مدت زمان: 876 دقیقه
    تاریخ انتشار: ۹ اردیبهشت ۱۴۰۲
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید