USP_WPPARSINGERROR_CLEAR

Parameters

Parameter Parameter Type Mode Description
@CHANGEAGENTID uniqueidentifier IN

Definition

Copy


CREATE procedure dbo.USP_WPPARSINGERROR_CLEAR(
                        @CHANGEAGENTID uniqueidentifier = null
                    )
as begin

    delete WPPARSINGERROR
    return 0;
end