UFN_TASKWIZARDCATALOG_GETTSLONG
Returns the timestamp of a specified task wizard.
Return
| Return Type |
|---|
| bigint |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_TASKWIZARDCATALOG_GETTSLONG
(
@ID uniqueidentifier
)
returns bigint
with execute as caller
as begin
declare @r bigint;
set @r=0;
select @r=TSLONG from dbo.TASKWIZARDCATALOG where ID = @ID;
return @r;
end