DROP INTEGRATION¶
Removes an integration from the account.
- See also:
CREATE INTEGRATION , ALTER INTEGRATION , SHOW INTEGRATIONS , DESCRIBE INTEGRATION
- API integrations
- Notification integrations
- Security integrations
- Storage integrations
Syntax¶
DROP [ { API | NOTIFICATION | SECURITY | STORAGE } ] INTEGRATION [ IF EXISTS ] <name>
Parameters¶
name
Specifies the identifier for the integration to drop. If the identifier contains spaces, special characters, or mixed-case characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive (e.g.
"My Object"
).API | NOTIFICATION | SECURITY | STORAGE
Specifies the integration type.
Usage Notes¶
Dropped integrations cannot be recovered; they must be recreated.
Examples¶
Drop an integration:
SHOW INTEGRATIONS LIKE 't2%'; DROP INTEGRATION t2; SHOW INTEGRATIONS LIKE 't2%';
Drop the integration again, but don’t raise an error if the integration does not exist:
DROP INTEGRATION IF EXISTS t2;