Show your support! Vote for Navicat in the DBTA Awards today!


  • MongoDB Documents Tutorial

    has spawned a new kind of database known as NoSQL. Perhaps the best known of this new breed of non-relational database is MongoDB. Unlike traditional relational databases (RDBMSes), MongoDB does not contain tables. Instead, it stores data as collections...

    https://www.navicat.com/en/company/aboutus/blog/768-mongodb-documents-tutorial.html
  • Navicat for MongoDB is Here

    Jul 31, 2018 by Robert Gravelle MongoDB is a different kind of database. Unlike traditional relational databases like SQL Server and MySQL, it stores data as JSON-like documents. While MongoDB's NoSQL approach does yield some advantages over its RDBMS...

    https://www.navicat.com/en/company/aboutus/blog/766-navicat-for-mongodb-is-here.html
  • What is Navicat for MongoDB | MongoDB management and development tool | Navicat

    Streamlined working environment. Work has never been easier. Navicat for MongoDB is designed to streamline your routine database tasks. The new interface is easy to access and understand -- giving you new ways to manage your MongoDB databases and...

    https://www.navicat.com/en/what-is-navicat-for-mongodb.html
  • PremiumSoft announces Release of Navicat for MongoDB

    2018-07-26 PremiumSoft announces Release of Navicat for MongoDB PremiumSoft today announces the immediate release of Navicat for MongoDB Version 12.1, adding a new member to the Navicat family. Navicat for MongoDB is a powerful MongoDB administration...

    https://www.navicat.com/en/company/press-2/765-premiumsoft-announces-release-of-navicat-for-mongodb.html
  • Navicat for MongoDB | MongoDB Database Administration and Development Tool

    Navicat for MongoDB gives you a highly effective GUI interface for MongoDB database management, administration and development. Connect to local/remote MongoDB servers with MongoDB Atlas compatibility. Navicat for MongoDB offers remarkable features for...

    https://www.navicat.com/en/products/navicat-for-mongodb.html
  • Create DBRefs in MongoDB

    week's blog , we explored the pros and cons of document relationship modeling via Embedded and Referenced approaches in MongoDB. We then gained some valuable experience with each by creating both an Embedded and Referenced relationship. Today, we'll...

    https://www.navicat.com/en/company/aboutus/blog/1004-create-dbrefs-in-mongodb.html
  • Performing Regular Expression Searches in MongoDB

    expressions (regex) provide a way to match strings against a pattern so that your searches are "fuzzy" rather than exact. MongoDB comes with a regex engine built in so you can dig up documents even if you don't know exactly what the exact Field value is...

    https://www.navicat.com/en/company/aboutus/blog/1011-performing-regular-expression-searches-in-mongodb.html
  • Relationships in MongoDB

    maintain relationships between the tables to organize the data together in meaningful ways. Document databases such as MongoDB are sometimes called "schema-less" due to the fact that they don't really enforce relationships like RDBMSes do. However,...

    https://www.navicat.com/en/company/aboutus/blog/1003-relationships-in-mongodb.html
  • Specifying Collation in MongoDB (Part 1)

    Oct 3, 2018 by Robert Gravelle Collation involves a set of language-specific rules for string comparison, such as those for lettercase and accent marks. Your run of the mill sorting is fine for simple entries made up of alphanumeric characters, but...

    https://www.navicat.com/en/company/aboutus/blog/877-specifying-collation-in-mongodb-part-1.html
  • Navicat for MongoDB Feature Matrix | Navicat

    Essentials Enterprise Feature Matrix Essentials Enterprise Connection MongoDB 3.0 or later MongoDB Atlas, Alibaba Cloud, Tencent Cloud, Huawei Cloud Secure connection: SSH/SSL Kerberos and LDAP authentication x.509 certificate authentication...

    https://www.navicat.com/en/products/navicat-for-mongodb-feature-matrix.html
  • Introduction to Views in MongoDB

    Views are sometimes referred to as "virtual tables" because they don't store data, but can be queried just like tables. MongoDB recently introduced views in version 3.4. In today's blog, we'll learn how to create a view in MongoDB using Navicat for...

    https://www.navicat.com/en/company/aboutus/blog/876-introduction-to-views-in-mongodb.html
  • Navicat Premium | Connects to multiple databases on a single GUI

    Navicat Premium is a database development tool that allows you to simultaneously connect to MySQL, MariaDB, MongoDB, SQL Server, Oracle, PostgreSQL, and SQLite databases from a single application. Compatible with cloud databases like Amazon RDS, Amazon...

    https://www.navicat.com/en/products/navicat-premium.html
  • Working with Cursors in MongoDB

    server. Relational databases provide cursors as a means for iterating over each row of the results set. Does that mean that MongoDB users are out of luck? As it turns out, MongoDB's db.collection.find() function returns a cursor. In MongoDB, cursors...

    https://www.navicat.com/en/company/aboutus/blog/1258-working-with-cursors-in-mongodb.html
  • Using Covered Queries in MongoDB

    indexing is a great way to optimize query performance by minimizing the number of disk accesses required by the query. MongoDB has a specific application of field indexing called Covered Queries, where all of a query's columns are indexed. Covered...

    https://www.navicat.com/en/company/aboutus/blog/1006-using-covered-queries-in-mongodb.html
  • Storing Large Files in MongoDB

    Nov 13, 2018 by Robert Gravelle MongoDB employs a serialization format called "BSON" to store documents. A combination of the words "Binary" and "JSON" (JavaScript Object Notation), you can think of BSON as a binary representation of JSON documents....

    https://www.navicat.com/en/company/aboutus/blog/964-storing-large-files-in-mongodb.html
  • Introduction to User & Role Management in MongoDB

    Oct 23, 2018 by Robert Gravelle MongoDB provides a User Management Interface for performing a wide variety of user-related tasks. In addition to adding new users, the User Management Interface also allows database administrators (DBAs) to update...

    https://www.navicat.com/en/company/aboutus/blog/914-introduction-to-user-role-management-in-mongodb.html
  • Specifying Collation in MongoDB (Part 2)

    Oct 9, 2018 by Robert Gravelle In this series on Collation support in MongoDB, we've been learning how to specify collation in MongoDB using the Navicat for MongoDB GUI administration and development tool. Part I provided a brief introduction to the...

    https://www.navicat.com/en/company/aboutus/blog/912-specifying-collation-in-mongodb-part-2.html
  • Analyzing MongoDB Schemas and Data

    is useful in verifying your schemas, visualizing data distributions and for identifying data outliers. Available only for MongoDB, the Navicat for MongoDB Collection and Data Viewer toolbars include command buttons for analyzing your collection schema...

    https://www.navicat.com/en/company/aboutus/blog/869-analyzing-mongodb-schemas-and-data.html
  • Working with Documents in Navicat for MongoDB

    Aug 21, 2018 by Robert Gravelle MongoDB is a NoSQL database that stores data as collections of documents. Therefore, it behooves you to learn how to work with both documents and collections. In the MongoDB Documents Tutorial we learned how documents...

    https://www.navicat.com/en/company/aboutus/blog/769-working-with-documents-in-navicat-for-mongodb.html
  • All about MongoDB's _id Field

    Mar 26, 2019 by Robert Gravelle Open up any document in a MongoDB database and you'll notice an _id field: In fact, the ObjectId/_id is the only field that exists across every MongoDB document. In today's blog, we'll explore what it is and why it's...

    https://www.navicat.com/en/company/aboutus/blog/1010-all-about-mongodb-s-_id-field.html

Results 1 - 20 of 42