UninstallAlertSeverityProcResource (Resource)

Element properties:

TypeResource
File NameUninstallAlertSeverityProc.sql
AccessibilityPublic

Source Code:

<Resource ID="UninstallAlertSeverityProcResource" Accessibility="Public" FileName="UninstallAlertSeverityProc.sql"/>

File Content: UninstallAlertSeverityProc.sql

IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = N'TransformAlertSeverityProc')

BEGIN
DROP PROCEDURE dbo.[TransformAlertSeverityProc]
END
GO