USP_QUEUEPROCESS_VALIDATEQUEUEPROCESSDELETE

Validates that the queue process is not in use.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create procedure dbo.USP_QUEUEPROCESS_VALIDATEQUEUEPROCESSDELETE
(
    @ID uniqueidentifier
)
with execute as caller
as        
    if @ID is not null 
    begin

        if OBJECT_ID('dbo.USP_OLAPDATASOURCE_VALIDATEQUEUEDELETE', 'P') is not null
        begin
            exec dbo.[USP_OLAPDATASOURCE_VALIDATEQUEUEDELETE] @ID;
        end

    end