¿¡·¯¸Þ¼¼Áö
ORA-00020: ÃÖ´ë ÇÁ·Î¼¼½º (%s) ¼ö¸¦ ÃÊ°úÇß½À´Ï´Ù
ORA-00020: maximum number of processes (100)
¿øÀÎ
1. ÇÁ·Î±×·¥ ³»¿¡¼ Connection À» Close ÇØÁÖÁö ¾Ê¾Æ¼ ¿À¶óŬ ÇÁ·Î¼¼½º°¡ °è¼Ó Áõ°¡.
2. init.oraÆÄÀÏÀÇ processesÆĶó¹ÌÅÍ¿¡¼ Á¤ÇØÁø ÇÁ·Î¼¼½º °³¼ö°¡ ÃÊ°úµÊ.
ÇØ°á¹æ¹ý
1. ÇÁ·Î±×·¥ ³»¿¡¼ Close µÇÁö ¾ÊÀº ºÎºÐÀÌ ÀÖ´ÂÁö È®ÀÎ.
2. $ORACLE_HOME/pfile/init.ora ¿¡¼ processes ÆĶó¹ÌÅÍ °ªÀ» ´Ã·Á ÁÜ.
*½ÇÁ¦ Session È®ÀÎ
SQL> show parameter sessions
SQL> show parameter processes
SQL> select * from v$license;
SQL> select * from v$resource_limit;
SQL> select count(1) from V$SESSION;
SQL> select machine,osuser,program,count(1)
from V$SESSION
group by machine,osuser,program
order by machine,osuser,program;
SQL> select * from V$SESSION;