UFN_BUSINESSPROCESSSCHEDULELASTRUN_ROWCOUNT
Return
Return Type |
---|
int |
Definition
Copy
create function dbo.UFN_BUSINESSPROCESSSCHEDULELASTRUN_ROWCOUNT()
returns int
with execute as caller
as begin
declare @ret int;
select @ret = count(ID) from dbo.BUSINESSPROCESSSCHEDULELASTRUN;
return @ret;
end