UFN_BBAIMPORTFILES_GETAUXILIARYRESEARCHGROUPSIZE

This function returns the auxiliary research group size for the BBA File Import.

Return

Return Type
int

Definition

Copy


            create function dbo.UFN_BBAIMPORTFILES_GETAUXILIARYRESEARCHGROUPSIZE()
            returns int
            with execute as caller
            as begin
                return (select
                    BBAIMPORTFILES.AUXILIARYRESEARCHGROUPSIZE
                from 
                    dbo.BBAIMPORTFILES);
            end