前面介绍了Oracle的基本参数,从这节开始讲其他的参数,参数从v$parameter中提取

基本参数请看如下链接: http://www.zhaibibei.cn/oralce/oracle-parameter/

如无特殊说明数据库版本为11.2


parallel_execution_message_size

1.png
  1. 参数类型:整型
  2. 默认值:操作系统指定
  3. 修改:修改不需要重启数据库
  4. 取值范围:2148~32768(有些操作系统可能会小于此值)
  5. 基本参数:否
  6. rac中各实例必须使用相同的值

取值意义

该参数指定并行执行中meassage的大小

默认值如下:

  • 16384 bytes if COMPATIBLE is set to 11.2.0 or higher
  • 4096 bytes if COMPATIBLE is less than 11.2.0 and PARALLEL_AUTOMATIC_TUNING is set to true
  • 2148 bytes if COMPATIBLE is less than 11.2.0 and PARALLEL_AUTOMATIC_TUNING is set to false

大多数情况下默认值是适合的,越大需要更大的shared pool

PARALLEL_AUTOMATIC_TUNING 设置为true的时候, 该message缓存不在shared pool中


实际截图:

2.png

参考链接

https://docs.oracle.com/cd/E18283_01/server.112/e17110/initparams178.htm


下期参数

parallel_io_cap_enabled