ServiceLevelObjectiveGetByServiceLevelAgreement.Drop.SP.sql (Resource)

Element properties:

TypeResource
File NameServiceLevelObjectiveGetByServiceLevelAgreement.Drop.SP.sql
AccessibilityInternal

Source Code:

<Resource ID="ServiceLevelObjectiveGetByServiceLevelAgreement.Drop.SP.sql" Accessibility="Internal" FileName="ServiceLevelObjectiveGetByServiceLevelAgreement.Drop.SP.sql"/>

File Content: ServiceLevelObjectiveGetByServiceLevelAgreement.Drop.SP.sql

IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'ServiceLevelObjectiveGetByServiceLevelAgreement' AND UID = SCHEMA_ID('SDK'))

BEGIN
DROP PROCEDURE [SDK].[ServiceLevelObjectiveGetByServiceLevelAgreement]
END
GO