UFN_PAGEDEFINITION_GETTSLONG
Return
Return Type |
---|
bigint |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@PAGEID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_PAGEDEFINITION_GETTSLONG (@PAGEID uniqueidentifier)
returns bigint
as
begin
declare @TSLONG bigint;
select @TSLONG=TSLONG from dbo.PAGEDEFINITIONCATALOG
where PAGEDEFINITIONCATALOG.ID = @PAGEID;
return @TSLONG;
end