Metadata and introspection
Metadata contains the information about the database objects, structure, database object source code, and so on. IntelliJ IDEA 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 IntelliJ IDEA, 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.
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:
To open Database tool window, select from the main menu. Alternatively, press ⌘ 1.
In Database tool window, click the N of M button next to the data source, database, or schema name.
In the schema selection popup window, select the databases or schemas and press Enter.
In Data Sources and Drivers dialog:
To open the dialog, right-click the data source in Database tool window and select
Properties. Alternatively, click the
Data Source Properties icon on toolbar.
In the Schemas tab of Data Sources and Drivers dialog, select the databases or schemas.
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.

MySQL
data source that has not been introspected.The only introspected
guest
database of thePostgreSQL
data source. The database includes four schemas and only thepublic
one has been introspected.Database object resolve in a query console: successful for the introspected
guest
schema and unsuccessful for thetests
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
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.
In the Options tab, navigate to the Load sources for setting and select the category of schemas.
Apply the changes and close the dialog.

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, IntelliJ IDEA has three introspection levels available for a few databases. For more information about the levels, refer to Introspection levels topic.
Introspection types
In IntelliJ IDEA, depending on your database vendor, you can use the following introspection types: full introspection, fragment introspection, and incremental introspection.
- Full introspection
The entire database schema is synced and refreshed every time a DDL statement is executed in a query console.
- Incremental introspection
With the incremental introspection, the introspector detects objects changed in the database after the previous introspection and loads only these objects.
- Fragment introspection
Only the database objects affected by an executed statement are refreshed.
Every time a DDL statement is executed in the query console, IntelliJ IDEA analyzes it. The IDE determines which objects can be modified by the statement execution and refreshes only those objects.
For example, if a constraint is dropped in a table with
drop constraint My_Table_pk
, then the table that contained the constraint is refreshed. But if amy_view
view depends on amy_table
table and the table is modified by a user, then themy_view
view is not updated.- By levels
For some databases, a few levels of introspection are supported. These levels allow for different amount of metadata to be loaded from a database.
For more information about introspection levels, refer to the Introspection levels topic.
If no specific introspection type is supported for a database, IntelliJ IDEA performs full introspection. Specific types of introspection are supported for the following databases:
Database | Incremental | Fragment | By levels |
---|---|---|---|
Yes | Yes | - | |
Yes | - | - | |
Yes | Yes | Yes | |
Yes | Yes | - | |
Yes | Yes | Yes | |
Yes | Yes | Yes | |
Yes | - | - |