SHOW CONNECTIONS

SHOW CONNECTIONS lists the connections configured in Materialize.

Syntax

SHOW CONNECTIONS FROM schema_name LIKE pattern WHERE expr
Field Use
schema_name The schema to show connections from. If omitted, connections from all schemas are shown. For available schemas, see SHOW SCHEMAS.

Examples

SHOW CONNECTIONS;
       name          | type
---------------------+---------
 kafka_connection    | kafka
 postgres_connection | postgres
SHOW CONNECTIONS LIKE 'kafka%';
       name       | type
------------------+------
 kafka_connection | kafka
Back to top ↑