List integrations in the account, optionally filtered by type. Syntax: SHOW <type> INTEGRATIONS
Lists the integrations in your account.
The output returns integration metadata and properties.
SHOW { API | CATALOG | EXTERNAL ACCESS | NOTIFICATION | SECURITY | STORAGE } INTEGRATIONS [ LIKE '<pattern>' ]
{ API | CATALOG | EXTERNAL ACCESS | NOTIFICATION | SECURITY | STORAGE } (Required)
Specifies the integration type. Always include the type qualifier (e.g., SHOW STORAGE INTEGRATIONS, SHOW NOTIFICATION INTEGRATIONS). While the syntax technically allows omitting the type, you should always specify it when the integration type is known.
LIKE '<pattern>'
Optionally filters the command output by object name. The filter uses case-insensitive pattern matching, with support for SQL wildcard characters (% and _).
For example, the following patterns return the same results:
LIKE '%testing%'LIKE '%TESTING%'Default: No value (no filtering is applied to the output).
A role used to execute this SQL command must have at least one of the following privileges at a minimum:
| Privilege | Object | Notes |
|---|---|---|
| USAGE | Integration | |
| OWNERSHIP | Integration | OWNERSHIP is a special privilege on an object that is automatically granted to the role that created the object, but can also be transferred using the GRANT OWNERSHIP command to a different role by the owning role (or any role with the MANAGE GRANTS privilege). |
SHOW CATALOG INTEGRATIONS, not just SHOW INTEGRATIONS).SELECT "type".The command output provides integration properties and metadata in the following columns:
| Column | Description |
|---|---|
| name | Name of the integration |
| type | Type of the integration |
| category | Category of the integration |
| enabled | Current status of the integration, either TRUE (enabled) or FALSE (disabled) |
| comment | Comment for the integration |
| created_on | Date and time when the integration was created |
Show all notification integrations:
SHOW NOTIFICATION INTEGRATIONS;
Show all the integrations whose name starts with line that you have privileges to view:
SHOW INTEGRATIONS LIKE 'line%';