DROP NOTIFICATION INTEGRATION
Introduced or updated: v1.2.371
The DROP NOTIFICATION INTEGRATION statement is used to delete an existing notification.
NOTICE: this functionality works out of the box only in Databend Cloud.
Syntax
DROP NOTIFICATION INTEGRATION [ IF EXISTS ] <name>
| Parameter | Description |
|---|---|
| IF EXISTS | Optional. If specified, the notification will only be dropped if a notification of the same name already exists. |
| name | The name of the notification. This is a mandatory field. |
Usage Examples
DROP NOTIFICATION INTEGRATION IF EXISTS error_notification;
This command deletes the notification integration named error_notification if it exists.