GetServiceLevelInformationData.Drop.SP.sql (Resource)

Element properties:

TypeResource
File NameGetServiceLevelInformationData.Drop.SP.sql
AccessibilityInternal

Source Code:

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

File Content: GetServiceLevelInformationData.Drop.SP.sql

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

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