36 DBMS_CONNECTION_POOL
The DBMS_CONNECTION_POOL
package provides an interface to manage Database Resident Connection Pool.
See Also:
Oracle Database Concepts for more information on "Database Resident Connection Pooling"
This chapter contains the following topic:
36.1 Summary of DBMS_CONNECTION_POOL Subprograms
This table lists the DBMS_CONNECTION_POOL
subprograms in alphabetical order and briefly describes them.
Table 36-1 DBMS_CONNECTION_POOL Package Subprograms
Subprogram | Description |
---|---|
Alters a specific configuration parameter as a standalone unit and does not affect other parameters |
|
Configures the pool with advanced options |
|
Starts the pool for operations. It is only after this call that the pool could be used by connection clients for creating sessions |
|
Stops the pool and makes it unavailable for the registered connection clients |
|
Restores the pool to default settings |
36.1.1 ALTER_PARAM Procedure
This procedure alters a specific configuration parameter as a standalone unit and does not affect other parameters.
Syntax
DBMS_CONNECTION_POOL.ALTER_PARAM ( pool_name IN VARCHAR2 DEFAULT 'SYS_DEFAULT_CONNECTION_POOL', param_name IN VARCHAR2, param_value IN VARCHAR2);
Parameters
Table 36-2 ALTER_PARAM Procedure Parameters
Parameter | Description |
---|---|
|
Pool to be configured. Currently only the default pool name is supported. |
|
Any parameter name from |
|
Parameter value for |
See Also:
For the list and description of all the database resident connection pooling parameters that can be configured using this procedure, see the Oracle Database Administrator's Guide.Exceptions
Table 36-3 ALTER_PARAM Procedure Exceptions
Exception | Description |
---|---|
|
Connection pool not found |
|
Invalid connection pool configuration parameter name |
|
Invalid connection pool configuration parameter value |
|
Connection pool alter configuration failed |
Examples
DBMS_CONNECTION_POOL.ALTER_PARAM( 'SYS_DEFAULT_CONNECTION_POOL', 'MAX_LIFETIME_SESSION', '120');
36.1.2 CONFIGURE_POOL Procedure
This procedure configures the pool with advanced options.
Syntax
DBMS_CONNECTION_POOL.CONFIGURE_POOL ( pool_name IN VARCHAR2 DEFAULT 'SYS_DEFAULT_CONNECTION_POOL', minsize IN NUMBER DEFAULT 4, maxsize IN NUMBER DEFAULT 40, incrsize IN NUMBER DEFAULT 2, session_cached_cursors IN NUMBER DEFAULT 20, inactivity_timeout IN NUMBER DEFAULT 300, max_think_time IN NUMBER DEFAULT 120, max_use_session IN NUMBER DEFAULT 500000, max_lifetime_session IN NUMBER DEFAULT 86400, max_txn_think_time IN NUMBER);
Parameters
Table 36-4 CONFIGURE_POOL Procedure Parameters
Parameter | Description |
---|---|
|
Pool to be configured. Currently only the default pool name is supported. |
|
Minimum number of pooled servers in the pool |
|
Maximum allowed pooled servers in the pool |
|
Pool would increment by this number of pooled server when pooled server are unavailable at application request time |
|
Turn on |
|
|
|
The maximum time of inactivity, in seconds, for a client after it obtains a pooled server from the pool with no open transactions in it. After obtaining a pooled server from the pool, if the client application does not issue a database call for the time specified by MAX_THINK_TIME, the pooled server is freed and the client connection is terminated. |
|
Maximum number of times a connection can be taken and released to the pool |
|
|
|
The maximum time of inactivity, in seconds, for a client after it obtains a pooled server from the pool with an open transaction. After obtaining the pooled server from the pool, if the client application does not issue a database call for the time specified by MAX_TXN_THINK_TIME, then the pooled server is freed, and the client connection is terminated. The default value of this parameter is the value of the MAX_THINK_TIME parameter. Applications can set the value of the MAX_TXN_THINK_TIME parameter to a value higher than the MAX_THINK_TIME value to allow more time for the connections with open transactions. |
Exceptions
Table 36-5 CONFIGURE_POOL Procedure Exceptions
Exception | Description |
---|---|
|
Connection pool not found |
|
Connection pool alter configuration failed |
Usage Notes
-
All expressions of time are in seconds
-
All of the parameters should be set based on statistical request patterns.
-
minsize
should be set keeping in mind that it puts a lower bound on server resource consumption. This is to prevent the timeout from dragging the pool too low, because of a brief period of inactivity. -
maxsize
should be set keeping in mind that it puts an upper bound on concurrency and response-times and also server resource consumption. -
session_cached_cursors
is typically set to the number of most frequently used statements. It occupies cursor resource on the server -
In doubt, do not set the
increment
andinactivity_timeout
. The pool will have reasonable defaults. -
max_use_session
andmax_lifetime_session
allow for software rejuvenation or defensive approaches to potential bugs, leaks, accumulations, and like problems, by getting brand new sessions once in a while. -
The connection pool reserves 5% of the pooled servers for authentication, and at least one pooled server is always reserved for authentication. When setting the
maxsize
parameter, ensure that there are enough pooled servers for both authentication and connections.
36.1.3 START_POOL Procedure
This procedure starts the pool for operations. It is only after this call that the pool could be used by connection classes for creating sessions.
Syntax
DBMS_CONNECTION_POOL.START_POOL ( pool_name IN VARCHAR2 DEFAULT 'SYS_DEFAULT_CONNECTION_POOL');
Parameters
Table 36-6 START_POOL Procedure Parameters
Parameter | Description |
---|---|
|
Pool to be started. Currently only the default pool name is supported. |
Exceptions
Table 36-7 START_POOL Procedure Exceptions
Exception | Description |
---|---|
|
Connection pool not found |
|
Connection pool startup failed |
Usage Notes
If the instance is restarted (shutdown followed by startup), the pool is automatically started.
36.1.4 STOP_POOL Procedure
This procedure stops the pool and makes it unavailable for the registered connection classes.
Syntax
DBMS_CONNECTION_POOL.STOP_POOL ( pool_name IN VARCHAR2 DEFAULT 'SYS_DEFAULT_CONNECTION_POOL');
Parameters
Table 36-8 STOP_POOL Procedure Parameters
Parameter | Description |
---|---|
|
Pool to be stopped. Currently only the default pool name is supported. |
Exceptions
Table 36-9 STOP_POOL Procedure Exceptions
Exception | Description |
---|---|
|
Connection pool not found |
|
Connection pool shutdown failed |
Usage Notes
This stops the pool and takes it offline. This does not destroy the persistent data (such as, the pool name and configuration parameters) associated with the pool.
36.1.5 RESTORE_DEFAULTS Procedure
This procedure restores the pool to default settings.
Syntax
DBMS_CONNECTION_POOL.RESTORE_DEFAULTS ( pool_name IN VARCHAR2 DEFAULT 'SYS_DEFAULT_CONNECTION_POOL');
Parameters
Table 36-10 RESTORE_DEFAULTS Procedure Parameters
Parameter | Description |
---|---|
|
Pool to be restored. Currently only the default pool name is supported. |
Exceptions
Table 36-11 RESTORE_DEFAULTS Procedure Exceptions
Exception | Description |
---|---|
|
Connection pool not found |
|
Connection pool alter configuration failed |
Usage Notes
If the instance is restarted (shutdown followed by startup), the pool is automatically started.