Files
sql-server-samples/samples/features/ssms-templates/Sql/Event Notification/DROP DATABASE EVENT NOTIFICATION.sql
T
2018-05-06 12:19:40 -04:00

9 lines
385 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