UFN_ORIGINATIONSETTING_GETCOUNT

Returns the count of rows in the ORIGINATIONSETTING table.

Return

Return Type
int

Definition

Copy


            create function dbo.UFN_ORIGINATIONSETTING_GETCOUNT()
            returns int
            with execute as caller
            as begin
                return (select count(*) from dbo.ORIGINATIONSETTING)
            end