UFN_RECORDOPERATION_GETTSLONG
Returns RECORDOPERATIONCATALOG.TSLONG for the given record operation.
Return
Return Type |
---|
bigint |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_RECORDOPERATION_GETTSLONG(@ID uniqueidentifier)
returns bigint
with execute as caller
as begin
declare @r bigint;
set @r=0;
select @r=TSLONG from dbo.RECORDOPERATIONCATALOG where ID = @ID;
return @r;
end