Lists the integrations in your account.
The output returns integration metadata and properties.
CREATE INTEGRATION , DROP INTEGRATION , ALTER INTEGRATION , DESCRIBE INTEGRATION
SHOW [ { API | CATALOG | EXTERNAL ACCESS | NOTIFICATION | SECURITY | STORAGE } ] INTEGRATIONS [ LIKE '<pattern>' ]
Copy
Parameters¶{ API | CATALOG | EXTERNAL ACCESS | NOTIFICATION | SECURITY | STORAGE }
Returns integrations of the specified type only.
For more information about some of these types, see the following topics:
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).
For instructions on creating a custom role with a specified set of privileges, see Creating custom roles.
For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.
Usage notes¶Currently, only the API | CATALOG | EXTERNAL ACCESS | NOTIFICATION | SECURITY | STORAGE
parameter is supported.
The command doesn’t require a running warehouse to execute.
The command only returns objects for which the current user’s current role has been granted at least one access privilege.
The MANAGE GRANTS access privilege implicitly allows its holder to see every object in the account. By default, only the account administrator (users with the ACCOUNTADMIN role) and security administrator (users with the SECURITYADMIN role) have the MANAGE GRANTS privilege.
To post-process the output of this command, you can use the pipe operator (->>
) or the RESULT_SCAN function. Both constructs treat the output as a result set that you can query.
The output column names for this command are generated in lowercase. If you consume a result set from this command with the pipe operator or the RESULT_SCAN function, use double-quoted identifiers for the column names in the query to ensure that they match the column names in the output that was scanned. For example, if the name of an output column is type
, then specify "type"
for the identifier.
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
For more information about the properties that can be specified for an integration, see the following topic for the integration by type:
Show all notification integrations:
SHOW NOTIFICATION INTEGRATIONS;Copy
Show all the integrations whose name starts with line
that you have privileges to view:
SHOW INTEGRATIONS LIKE 'line%';Copy
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4