Administrator
|
Ref Oracle Support:
PROCESSES specifies the maximum number of operating system user processes that can simultaneously connect to Oracle. Its value should allow for all background processes such as locks, job queue processes, and parallel execution processes.
Every login requires a session. SESSIONS parameter determines the maximum number of concurrent users in the system. SESSIONS derived from (1.5 * PROCESSES) + 22 (11G and 12C) , (1.1 * PROCESSES) + 5 (10G)
Well.. There is no direct answer for your question.
It depends on lots of factors.
But, I would start by setting process to 500.
After this setting, I would monitor the connections using V$RESOURCE_LIMIT view .. (MAX_UTILIZATION for PROCESSES), and if necessarray I would modify the parameter according.
|