6.39 SET_MAX_SCHEDULER_JOBS Procedure

This procedure sets the maximum background processing jobs attribute of the application to be imported.

Syntax

APEX_APPLICATION_INSTALL.SET_MAX_SCHEDULER_JOBS (
    p_max_scheduler_jobs IN NUMBER )

Parameters

Parameter Description
p_max_scheduler_jobs Maximum number of background processing jobs for the application to be imported.

Example

The following example sets the maximum number of background processing jobs for app 100 to 5.

BEGIN
  apex_application_install.set_max_scheduler_jobs(
    p_max_scheduler_jobs => 5 );
END;
/
@f100.sql