UFN_BBAIMPORTFILESROWCOUNT

Returns the number of rows in the BBAIMPORTFILES table.

Return

Return Type
int

Definition

Copy


            CREATE function dbo.UFN_BBAIMPORTFILESROWCOUNT()
            returns int
            with execute as caller
            as begin                    
                return (select
                    count(ID)
                from
                    dbo.BBAIMPORTFILES);
            end