Problem
Need to adjust max number of sessions in Oracle DB.
Solution
Standard formula looks like:
PROCESSES = Operating System Dependant
SESSIONS = (1.1 * PROCESSES) + 5
TRANSACTIONS = 1.1 * SESSIONS
Need to adjust max number of sessions in Oracle DB.
Solution
Standard formula looks like:
PROCESSES = Operating System Dependant
SESSIONS = (1.1 * PROCESSES) + 5
TRANSACTIONS = 1.1 * SESSIONS
alter system set sessions=1000 scope=spfile;
alter system set processes=905 scope=spfile;
alter system set transactions=1100 scope=spfile;
shutdown immediate;
startup;
No comments:
Post a Comment