job_queue_processes 这个参数和你的job运行的个数有关。
是最大的job个个数 大点应该对性能不会有太大的影响
有时候job有运行但没有效果。有可能是这个参数设置为0或者小于当前job的总数了。
SQL> alter system set job_queue_processes=10000 scope=both;
alter system set job_queue_processes=10000 scope=both
*
ERROR at line 1:
ORA-00068: invalid value 10000 for parameter job_queue_processes, must be
between 0 and 1000
SQL> alter system set job_queue_processes=1000 scope=both;
System altered.
例如你可以定义超过100个JOB,但是QUEUE中只能放100个.
就象公共汽车只能坐100个乘客,但是车战上可以有任意多的候车者
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/70612/viewspace-1034047/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/70612/viewspace-1034047/