Files
sql-server-samples/samples/features/ssms-templates/Sql/Event Notification/DROP DATABASE EVENT NOTIFICATION.sql
T
2023-02-20 19:33:29 +00:00

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