UninstallAlertCategoryProcResource (Resource)

Element properties:

TypeResource
File NameUninstallAlertCategoryProc.sql
AccessibilityPublic

Source Code:

<Resource ID="UninstallAlertCategoryProcResource" Accessibility="Public" FileName="UninstallAlertCategoryProc.sql"/>

File Content: UninstallAlertCategoryProc.sql

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

BEGIN
DROP PROCEDURE dbo.[TransformAlertCategoryProc]
END
GO