📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

DROP NOTIFICATION INTEGRATION



The DROP NOTIFICATION INTEGRATION statement is used to delete an existing notification.

NOTICE: this functionality works out of the box only in TiDB Cloud Lake.

Syntax

DROP NOTIFICATION INTEGRATION [ IF EXISTS ] <name>
ParameterDescription
IF EXISTSOptional. If specified, the notification will only be dropped if a notification of the same name already exists.
nameThe 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.

Was this page helpful?