Hello,
I am looking for some help with DBMS SCHEDULER in Oracle. We have multiple remote servers registered with our Oracle databases(with Oracle scheduler agents). And we schedule our jobs in these remote servers (Oracle client alone installed) as external jobs.
Typically our ALL_SCHEDULER_EXTERNAL_DESTS looks like below.
OWNER|DESTINATION_NAME|HOSTNAME |PORT|IP_ADDRESS |ENABLED|
-----+----------------+--------------+----+-------------+-------+
SYS |SERVER1 |xxxxxxxxxxxx |xxxx|x.x.x.x |TRUE |
SYS |SERVER2 |xxxxxxxxxxxx |xxxx|x.x.x.x |TRUE |
SYS |SERVER3 |xxxxxxxxxxxx |xxxx|x.x.x.x |TRUE |
SYS |SERVER4 |xxxxxxxxxxxx |xxxx|x.x.x.x |TRUE |
SYS |SERVER5 |xxxxxxxxxxxx |xxxx|x.x.x.x |TRUE |
I would like to know if we have any means to control the number of jobs submitted in each of these registered external servers with help of DBMS_SCHEDULER ? Say for example, SERVER1 max of 60 jobs, SERVER2 max of 30 jobs and so forth...
Thanks in advance.
Regards