JetBrains Rider 2025.1 Help

Metadata and introspection

Metadata contains the information about the database objects, structure, database object source code, and so on. JetBrains Rider uses this information to show the objects in Database tool window, display their DDL, suggest them during completion, and for other coding assistance, navigation, and search features.

In JetBrains Rider, there are two ways of obtaining metadata of your database: minicatalogs and introspection.

Minicatalogs

With the minicatalogs for system schemas, metadata of system schemas is pre-introspected and provided with the IDE itself. They allow writing scripts that use system metadata prior to introspecting system schemas and with no connection to the database.

Introspection

Introspection is a process of loading metadata of a database. When you perform introspection, structural information in the data source is inspected to detect tables, columns, routines, and other database objects with their attributes.

Introspection is only supported for the databases that have data structure and catalogs.

By default, only the schemas and databases selected to be shown in the Database tool window are introspected.

You can select which schemas and databases will be introspected and shown by either selecting them in the Database tool window, or editing the data source properties in Data Sources and Drivers dialog ( Shift+Enter) dialog.

Select schemas and databases for introspection

  • In Database tool window:

    1. To open Database tool window, select View | Tool Windows | Database from the main menu. Alternatively, press ⌘ 1.

    2. In Database tool window, click the N of M button next to the data source, database, or schema name.

      Select schemas or databases in Database tool window
    3. In the schema selection popup window, select the databases or schemas and press Enter.

  • In Data Sources and Drivers dialog:

    1. To open the dialog, right-click the data source in Database tool window and select the Properties icon Properties. Alternatively, click the the Settings button Data Source Properties icon on toolbar.

    2. In the Schemas tab of Data Sources and Drivers dialog, select the databases or schemas.

      Select schemas or databases in data source properties

      Note that the Object filter field only defines which objects are visible in Database tool window and does not affect the introspection scope.

    3. Apply your changes and close the dialog.

Once the necessary databases and schemas are introspected, IDE can resolve the database objects in your scripts to the correct context. The example below demonstrates database object resolve for introspected and not introspected schemas.

Database objects resolve for the introspected and not introspected schemas
  1. MySQL data source that has not been introspected.

  2. The only introspected guest database of the PostgreSQL data source. The database includes four schemas and only the public one has been introspected.

  3. Database object resolve in a query console: successful for the introspected guest schema and unsuccessful for the tests schema that has not been introspected.

For every data source, you can also select the category of schemas that source code of database objects is loaded for.

Load sources of database objects for different schemas

  1. To select schemas for which sources of database objects are loaded, open the Data Sources and Drivers dialog ( Shift+Enter) and select a data source.

  2. In the Options tab, navigate to the Load sources for setting and select the category of schemas.

  3. Apply the changes and close the dialog.

Select the category of schemas that database object sources are loaded for

Database users might experience a long introspection time if all the objects are being processed, whereas it is usually not required for daily work and coding assistance. To reduce the number of introspected objects, JetBrains Rider has additional introspection types and also three introspection levels implemented for some of the supported databases.

Introspection types

The introspection type defines which database objects are refreshed during introspection. Some databases allow narrowing this introspection scope down to specific objects. In JetBrains Rider, depending on your database, the following introspection types are available: full introspection, fragment introspection, and incremental introspection.

Full introspection

The schemas and databases selected for introspection in Database tool window (schema selector) or in the Data Sources and Drivers dialog (the Schemas tab) are refreshed.

Incremental introspection

Only the database objects changed in the database after a previous introspection run are refreshed.

Fragment introspection
  • Only the database objects selected in Database tool window are refreshed when you invoke the Refresh action.

  • When you run a statement in a query console, a smart refresh mechanism is applied. JetBrains Rider analyzes which objects could be potentially modified by this statement, and only that specific set of objects is refreshed.

For some of the supported databases, introspection can be performed by introspection levels.

Introspection by levels

Introspection levels define the amount of detail retrieved for database objects:

  • Level 1: Only database object names are loaded.

  • Level 2: Everything is loaded except the source code of database objects.

  • Level 3: Everything is loaded.

For more information about introspection levels, refer to the Introspection levels topic.

If no specific introspection type is supported for a database, JetBrains Rider performs full introspection. Specific types of introspection and introspection levels are supported for the following databases:

Database

Incremental introspection

Fragment introspection

Introspection levels

Azure SQL Database

Yes

Yes

-

Greenplum

Yes

-

-

MariaDB

Yes

Yes

Yes

Microsoft SQL Server

Yes

Yes

-

MySQL

Yes

Yes

Yes

Oracle

Yes

Yes

Yes

PostgreSQL

Yes

-

-

18 June 2025