- Categories:
User & Security DDL (Third-Party Service Integrations)
SHOW INTEGRATIONS¶
Lists the integrations for which you have access privileges. The command can be used to list integrations for the current/specified database or schema, or across your entire account.
The output returns integration metadata and properties, ordered lexicographically by database, schema, and integration name (see Output in this topic for descriptions of the output columns). This is important to note if you wish to filter the results using the provided filters.
- See also:
- API integrations
- Notification integrations
- Security integrations
- Storage integrations
Syntax¶
SHOW [ { API | NOTIFICATION | SECURITY | STORAGE } ] INTEGRATIONS [ LIKE '<pattern>' ]
Parameters¶
API | NOTIFICATION | SECURITY | STORAGE
Returns integrations of the specified type only.
LIKE 'pattern'
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%' ...
Usage Notes¶
Currently, only the
API | NOTIFICATION | SECURITY | STORAGE
parameter is supported.The command does not require a running warehouse to execute.
To post-process the output of this command, you can use the RESULT_SCAN function, which treats the output as a table that can be queried.
Output¶
The command output provides table properties and metadata in the following columns:
| name | type | category | enabled | created_on |
Column |
Description |
---|---|
|
Name of the integration |
|
Type of the integration |
|
Category of the integration |
|
The current status of the integration, either TRUE (enabled) or FALSE (disabled) |
|
Date and time when the integration was created |
For more information about the properties that can be specified for an integration, see the following topic for the integration by type:
Examples¶
Show all notification integrations:
SHOW NOTIFICATION INTEGRATIONS;
Show all the integrations whose name starts with line
that you have privileges to view in the tpch.public
schema:
SHOW INTEGRATIONS LIKE 'line%' IN tpch.public;