Technote (FAQ)
Question
Significance of jdbc properties "oraclePool.initSize", "oraclePool.MaxSize". How to check number of connections?
Answer
oraclePool.initsize is the minimum number of connection with which oracle pool will be opened with. It also means, At no point of time oracle connection should drop below this value for a JVM.
When JVM(agent/integration) is ideal then system will delete unused connection. But while deleting if connection goes below initSize then system will create new connection.
oraclePool.MaxSize is the maximum number of connection for the pool.
Query used to observe the number of connection.
select * from v$session where username='<provide_the_user_name>';
You can try logging Oracle with some different user to execute this query, so that,current session is not counted.
Rate this page:
Copyright and trademark information
IBM, the IBM logo and ibm.com are trademarks of International Business Machines Corp., registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at "Copyright and trademark information" at www.ibm.com/legal/copytrade.shtml.