v$resource_limit's output seems inconsistent
1 select
2 RESOURCE_NAME,
3 CURRENT_UTILIZATION,
4 MAX_UTILIZATION,
5 INITIAL_ALLOCATION,
6 LIMIT_VALUE
7 from v$resource_limit
8* where resource_name = 'parallel_max_servers'
RESOURCE_NAME CURRENT_UTILIZATION MAX_UTILIZATION INITIAL_AL LIMIT_VALU
------------------------------ ------------------- --------------- ---------- ----------
parallel_max_servers 309 645 384 3600
I am not sure what it means. I currently have 309 parallel slave processes; the max number is 645 and my allocation is 384. How can the max number of parallel slaves reach 645 if the value of the parameter is 384?
Am I misinterpreting this somehow?
thank you
Gene