UFN_SECUREGATEWAYCREDENTIALS_ROWCOUNT

Return

Return Type
int

Definition

Copy


create function dbo.UFN_SECUREGATEWAYCREDENTIALS_ROWCOUNT()
returns integer
with execute as caller
as begin
    declare @ROWS as integer;
    select @ROWS = count(*) from dbo.SECUREGATEWAYCREDENTIALS;
    return @ROWS;
end