Docs Menu

Docs HomeLaunch & Manage MongoDBMongoDB Atlas

Connect from the MongoDB Shell

On this page

  • Prerequisites
  • Procedure
  • Aggregation Syntax and Short-form Syntax

This page describes how to connect to a federated database instance through the MongoDB Shell (mongosh).

  • A federated database instance that is mapped to one or more data stores.

    Note

    If some or all of your data comes from an Atlas cluster, you must use MongoDB version 5.0 or greater for that cluster to take advantage of Atlas SQL.

1

If it isn't already displayed, click Data Federation in the sidebar.

2
3
4

If you do not have the MongoDB Shell installed:

1
2
3
4

To check that your installation was successful, in your terminal, run:

mongosh --version

If the installation was successful, mongosh displays a version.

If you already have the MongoDB Shell installed:

1
2

Note

The MongoDB Shell, or mongosh, is separate from the mongo versions in the modal dropdown menu.

If you want to ensure that you have mongosh installed, in your terminal, run:

mongosh --version

If mongosh is installed, it displays a version.

5

Your authentication method depends on how your Database Access is configured. To learn more about database access, see Configure Database Users.

You can choose:

  • Password (SCRAM), or

  • X.509.

Atlas Data Federation provides a connection string for your authentication method.

6

If you selected the Password (SCRAM) authentication method, you are prompted for a password for the connecting user.

7

To confirm that you are connected to your federated database instance, using mongosh, run:

show dbs

If you successfully connected to your federated database instance that is mapped to a data store, mongosh displays the names of your virtual databases.

Atlas SQL supports an aggregation pipeline stage syntax and a short-form syntax for constructing the SQL queries. You can use either of these syntaxes to write queries in the MongoDB Shell.

You can use the $sql aggregation pipeline stage to write Atlas SQL queries. See $sql for a list of properties you must provide to $sql.

The following example uses $sql syntax to execute the Atlas SQL statement select * from Users limit 2:

db.aggregate( [ {
$sql: {
statement: "SELECT *
FROM users
LIMIT 2",
format: "jdbc",
dialect: "mongosql"
}
} ] )

Note

Atlas SQL uses the dialect mongosql.

You can use a short-form syntax, db.sql, to supply an Atlas SQL statement directly.

Important

Short-form syntax is not stable and may change in the future.

db.sql(`
SELECT *
FROM users
LIMIT 2
`);
← Connect Using the Atlas SQL Interface