USP_AUDIT_ENABLE_AUDITING

Executes the "Audit Table: Enable" record operation.

Parameters

Parameter Parameter Type Mode Description
@ID nvarchar(128) IN Input parameter indicating the ID of the record being updated.
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the update.

Definition

Copy


CREATE procedure dbo.USP_AUDIT_ENABLE_AUDITING

@ID nvarchar(128),
@CHANGEAGENTID uniqueidentifier

as

set nocount on;

declare @r int;


exec @r=dbo.USP_ENABLEAUDIT @ID,1;

return @r;