mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
9 lines
384 B
Transact-SQL
9 lines
384 B
Transact-SQL
-- =============================================
|
|
-- Drop Database Event Notification Template
|
|
-- =============================================
|
|
IF EXISTS (SELECT *
|
|
FROM sys.event_notifications
|
|
WHERE name = N'<event_notification_name, sysname, myEventNotification>')
|
|
DROP EVENT NOTIFICATION <event_notification_name, sysname, myEventNotification>
|
|
ON DATABASE
|
|
GO |