Hướng dẫn mongodb compass update many

Docs HomeMongoDB Manual

Show

    ➤ Use the Select your language drop-down menu in the upper-right to set the language of the following examples.


    Note

    Starting in MongoDB 4.2, MongoDB can accept an aggregation pipeline to specify the modifications to make instead of an update document. See the method reference page for details.

    All write operations in MongoDB are atomic on the level of a single document. For more information on MongoDB and atomicity, see Atomicity and Transactions.

    Once set, you cannot update the value of the _id field nor can you replace an existing document with a replacement document that has a different _id field value.

    For write operations, MongoDB preserves the order of the document fields except for the following cases:

    • The _id field is always the first field in the document.

    • Updates that include renaming of field names may result in the reordering of fields in the document.

    With write concerns, you can specify the level of acknowledgement requested from MongoDB for write operations. For details, see Write Concern.

    Docs HomeMongoDB Compass

    You can edit existing documents in your collection.

    When you edit a document in List or Table view, Compass performs a findOneAndUpdate operation and updates only those fields that you have changed.

    When you edit a document in JSON view, Compass performs a findOneAndReplace operation and replaces the document.

    • Modifying documents is not permitted in MongoDB Compass Readonly Edition.

    Select the appropriate tab based on whether you are viewing your documents in List, JSON, or Table view:

    Hướng dẫn mongodb compass update many

    To exit the edit mode and cancel all pending changes to the document, click the Cancel button.

    Docs HomeMongoDB Compass

    On this page

    • Manually Install the Latest Version of Compass
    • Enable Automatic Updates
    • Allow Keychain Access for Recent and Favorite Connections
    • Migrate to Compass from Compass Community

    To ensure that you are using the latest Compass features and improvements, it is recommended to use the latest version of MongoDB Compass. To upgrade Compass, you can either manually install the latest version or enable automatic updates.

    You can download and install the latest version of Compass from the MongoDB Downloads page at any time. Check the Software Requirements for your operating system and desired version of Compass to ensure Compass is compatible with your system. You do not need to uninstall previous versions of Compass to upgrade.

    Note

    If you are running macOS Catalina or later, you may have to modify your system settings to grant Compass permission to run. For more information, see .

    You can enable automatic updates to the latest version of Compass on the Help > Privacy Settings dialog.

    Hướng dẫn mongodb compass update many

    MongoDB Compass does not install any updates without your explicit permission. Instead, Compass prompts you to upgrade when a new version is available.

    On macOS systems, the first time that you update MongoDB Compass to version 1.20 or later, you will need to allow access to your system storage for each saved connection in Recents and Favorites.

    When prompted for your keychain password, click Always Allow to prevent being prompted for your password in the future. This ensures MongoDB Compass has access to your saved connections when updating to new versions.

    To migrate from Compass Community edition to the fully-featured edition of Compass and retain any saved data such as saved connection strings and favorite queries, you must migrate that data to your new edition of MongoDB Compass.

    MongoDB Compass stores saved connections, queries, and aggregation pipelines in folders in your file system. You can copy these folders to the corresponding folder for your upgraded Compass version to avoid recreating your saved data.

    1. Download the fully-featured edition of MongoDB Compass from the downloads page.

    2. Refer to the following table to see where your MongoDB Compass data is stored based on your operating system:

      Operating System

      Data Location

      macOS

      ~/Library/Application Support/MongoDB Compass Community

      Windows

      %APPDATA%/MongoDB Compass Community

      Linux

      One of either:

      • $XDG_CONFIG_HOME/MongoDB Compass Community/

      • ~/.config/MongoDB Compass Community

    3. Copy the following folders from your Compass Community edition folder to your fully-featured Compass folder:

      • Connections

      • FavoriteQueries

      • RecentQueries

      • SavedPipelines

      The fully-featured Compass folder is located in the same directory as your Compass Community edition folder.

    4. Launch the fully-featured edition of MongoDB Compass.

    Tip

    See also: