If you plan on running 50 user processes, a good estimate would be to set the PROCESSES initialization parameter to 70.
To count current number of process on database:
SQL> select count(*) from v$process;
COUNT(*)
----------
368
To display current value of process on database:
SQL> show parameter process
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
processes integer 6000
SQL>
To display current value of process on os:
$ ulimit -u
131072
To count current number of process on os:
ps -ef|wc -l
1299
To set value in database:
SQL> alter system set process=6000 scope=spfile;
To set value in OS:
vi /etc/security/limits.conf
orausr soft nproc 131072
orausr hard nproc 131072
No comments:
Post a Comment