您的位置:首页 > 数据库 > Oracle

Oracle体系结构及备份(九)——sga-large_pool

2013-06-10 18:32 429 查看

一 什么是Large Pool

 

        大池是系统全局区中可选的一个内存区。主要在下面几种情况中使用:共享服务器的全局用户区(UGA)、并行进程、使用RMAN作备份恢复。大小由参数LARGE_POOL_SIZE决定,也可以动态改变大小。

 

        The database administrator can configure an optional memory area called the large pool to provide large memory allocations for:

 

        Session memory for the shared server and the Oracle XA interface (used where transactions interact with more than one database)

 

        I/O server processes

 

        Oracle Database backup and restore operations

 

        By allocating session memory from the large pool for shared server, Oracle XA, or parallel query buffers, Oracle Database can use the shared pool primarily for caching shared SQL and avoid the performance
overhead caused by shrinking the shared SQL cache.

 

        In addition, the memory for Oracle Database backup and restore operations, for I/O server processes, and for parallel buffers is allocated in buffers of a few hundred kilobytes. The large pool is
better able to satisfy such large memory requests than the shared pool.

 

        The large pool does not have an LRU list. It is different from reserved space in the shared pool, which uses the same LRU list as other memory allocated from the shared pool.

 

 

二 操作示例

SQL> show parameter large_pool_size;

NAME				     TYPE	 VALUE
------------------------------------ ----------- ------------------------------
large_pool_size 		     big integer 0
--12M——14M足够
SQL> alter system set large_pool_size=10M;

System altered.

SQL> show parameter large_pool_size;

NAME				     TYPE	 VALUE
------------------------------------ ----------- ------------------------------
large_pool_size 		     big integer 12M


 

 

三 总结

 

        1.Large Pool:大池,是系统全局区中可选的一个内存区。

        2.可以通过参数large_pool_size查询大池的大小。

 

我的邮箱:wgbno27@163.com
新浪微博:@Wentasy27
微信公众平台:JustOracle(微信号:justoracle)
IT交流群:336882565(加群时验证 From CSDN XXX)
Oracle交流讨论组:https://groups.google.com/d/forum/justoracle
By Larry Wen





 

@Wentasy 博文仅供参考,欢迎大家来访。如有错误之处,希望批评指正。原创博文如需转载请注明出处,谢谢 :) [CSDN博客]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息