UFN_DEVSPACESETTINGS_ROWCOUNT

Returns the number of rows defined in the DEVSPACESETTINGS table. Used as a constraint on the same table to limit the total rows

Return

Return Type
int

Definition

Copy


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