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

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

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

-------

**streams_pool_size**


[image:205 size:orig]





该参数用来指定STREAMS POOL的大小

1. 参数类型:整型
2. 语法:STREAMS_POOL_SIZE = integer [K | M | G]
2. 默认值:0
3. 使用alter system动态修改
4. 取值范围:最小:0 最大操作系统指定
5. 基本参数:否


--------

**默认值**

设置了SGA_TARGET,默认为0,如果设置了值则为STREAMS POOL最小值

如设置SGA_TARGET为0,该值不为0,则该值为STREAMS_POOL的固定大小






--------



**streams pool**


streams pool为10g开始Oracle 在Streams replication中提供的RMAN buffer区域

如SGA_TARGET和large_pool_size设置为非0,则buffer从SGA的streams pool中分配

如都未设置则从Shared pool中分配,最大为Shared pool的 10%

streams pool有如下好处:

- Stores buffered queue messages for Oracle Streams and Advanced Queuing (via the dbms_aqadm package).
- Provides memory for Oracle Streams capture and apply processes


可使用v$streams_pool_advice视图来调优






--------

**指定值的单位**

可以使用K,M来指定大小,如没有则默认为byte

实际值由Oracle ASSM自动管理(自动共享内存管理)



------------

**实际截图:**


[image:206 size:orig]








-----

**参考连接**

[http://www.dba-oracle.com/t_streams_pool.htm](http://www.dba-oracle.com/t_streams_pool.htm)

[https://docs.oracle.com/cd/E18283_01/server.112/e17110/initparams250.htm](https://docs.oracle.com/cd/E18283_01/server.112/e17110/initparams250.htm)

----------

下期参数

**shared_pool_reserved_size**