Thank you for visiting Spatial DBA - Oracle and ArcSDE.
I have stopped updating the blog.
Please visit Oracle DBA Tips (http://www.oracledbatips.com) for more Oracle DBA Tips.
Property | Description |
Parameter type | Integer |
Default value | Operating system-dependent |
Modifiable | No |
Range of values | 2148 to 65535 (64 KB - 1) |
Real Application Clusters | Multiple instances must have the same value. |
PARALLEL_EXECUTION_MESSAGE_SIZE
specifies the size of messages for parallel execution (formerly referred to as parallel query, PDML, Parallel Recovery, replication).On most platforms, the default value is
2148
bytes if PARALLEL_AUTOMATIC_TUNING
is set to false
, and 4096
bytes if PARALLEL_AUTOMATIC_TUNING
is set to true
. The default value is adequate for most applications. Larger values require a larger shared pool. Larger values result in better performance at the cost of higher memory use. For this reason, replication gets no benefit from increasing the size.Note:
1. When
2. Query for the current value of the parameterPARALLEL_AUTOMATIC_TUNING
is set to TRUE
, message buffers are allocated out of the large pool. In this case, the default is generally higher. Note that the PARALLEL_AUTOMATIC_TUNING
parameter has been deprecated.select name, value, isdefault, isses_modifiable, issys_modifiable,
isinstance_modifiable, isdeprecated, description
from v$parameter
where upper(name) = ‘PARALLEL_EXECUTION_MESSAGE_SIZE’;
NAME | VALUE | IS DEFAULT | ISSES_ MODIFIABLE | ISSYS_ MODIFIABLE | ISINSTANCE_ MODIFIABLE | IS DEPRECATED | DESCRIPTION |
parallel_execution_message_size | 2152 | TRUE | FALSE | FALSE | FALSE | FALSE | message buffer size for parallel execution |
No comments:
Post a Comment