DBA Data[Home] [Help]

APPS.BIS_COMMON_PARAMETERS dependencies on V$PARAMETER

Line 549: /* Not set by customer, so query v$parameters */

545: IF (l_parallel IS NOT NULL and l_parallel > 0) THEN
546: return l_parallel;
547: END IF;
548:
549: /* Not set by customer, so query v$parameters */
550:
551: begin
552: -------Changed to the following logic for bug 4007212.
553: ----the logic was given by performance team

Line 555: from v$parameter para

551: begin
552: -------Changed to the following logic for bug 4007212.
553: ----the logic was given by performance team
554: select min(para.value) into l_parallel
555: from v$parameter para
556: where para.name in ('cpu_count','parallel_max_servers');
557:
558: exception when no_data_found then
559: l_parallel := 1;