Skip to main content
The system catalog exposes a set of system views in the information_schema schema that contain metadata about the System. Most of these views follow the SQL standard with additional views specific to the system.

Alphabetical List of Views

  • information_schema.columns
  • information_schema.data_types
  • information_schema.databases
  • information_schema.geometry_columns
  • information_schema.groups
  • information_schema.index_recommendations
  • information_schema.indexes
  • information_schema.information_schema_catalog_name
  • information_schema.nodes
  • information_schema.pipeline_status
  • information_schema.pipeline_status_historical
  • information_schema.pipeline_table_metrics
  • information_schema.pipelines
  • information_schema.pipelines_historical
  • information_schema.reserved_words
  • information_schema.schemata
  • information_schema.table_privileges
  • information_schema.table_storage
  • information_schema.tables
  • information_schema.transactional_pipeline_status
  • information_schema.users
  • information_schema.views

System View Descriptions

information_schema.columns

The columns view shows information for all columns in the system.

information_schema.data_types

The data_types view shows all data types in the system.

information_schema.databases

The databases view shows all databases where the current user has access.

information_schema.geometry_columns

The geometry_columns view shows information about all geometry type columns in the system.

information_schema.groups

The groups view shows all groups in the system.

information_schema.index_recommendations

This view contains index recommendations.

information_schema.indexes

The indexes view shows all indexes used in the system.

information_schema.information_schema_catalog_name

The information_schema_catalog_name view shows the current database.

information_schema.nodes

The nodes view shows all nodes defined in the system.

information_schema.pipeline_status

To view dynamic information about the status of the pipeline, query from information_schema.pipeline_status, or you can use the SHOW PIPELINE_STATUS command.

information_schema.pipeline_status_historical

To view information about the status of dropped pipelines, query from information_schema.pipeline_status_historical. This system view is the historical equivalent of information_schema.pipeline_status.

information_schema.pipeline_table_metrics

To view dynamic information about the metrics specific to each of the target tables of the pipeline, query from the information_schema.pipeline_table_metrics view.

information_schema.pipelines

To view static information that stays the same after the pipeline has been created, query from information_schema.pipelines, or you can use the SHOW PIPELINES command. The columns in the information_schema.pipelines view derive from the underlying sys.pipelines system catalog table.

information_schema.pipelines_historical

To view static information about pipelines that have been dropped from the system, query from the information_schema.pipelines_historical system view. This view is the historical equivalent of the information_schema.pipelines view.

information_schema.reserved_words

The reserved_words view shows all reserved words in the system.

information_schema.schemata

The schemata view shows information for all schemas in the system.

information_schema.table_privileges

The table_privileges view shows information for all table privileges in the system.

information_schema.table_storage

The tables_storage view shows information about the storage used by tables.

information_schema.tables

The tables view shows information for all tables and views in the system, including user-defined and system objects.

information_schema.transactional_pipeline_status

To view information about the status of transactional pipelines (both active and dropped), query from information_schema.transactional_pipeline_status. This system view combines information_schema.pipeline_status and information_schema.pipeline_status_historical, filtered to pipelines with a non-NULL transaction_id column.

information_schema.users

The users view shows all users in the system.

information_schema.views

The views view shows information for all user-defined and system views in the system.

SHOW Commands

The SHOW commands are additional commands you can use to retrieve metadata about the system. These commands are tightly coupled with the information_schema schema and offer a more user-friendly syntax alternative. Sometimes, unlike their information_schema counterparts, SHOW commands only return user-defined objects. SQL Reference Database Administration System Catalog
Last modified on July 1, 2026