shared pool

 

Shared pool

shared pool可以分为库缓存(library cache)和数据字典缓存(dictionary cache)。Library cache存放了最近执行的SQL语句、存储过程、函数、解析树以及执行计划等。而dictionary cache则存放了在执行SQL语句过程中,所参照的数据字典的信息,包括SQL语句所涉及的表名、表的列、权限信息等。dictionary cache也叫做row cache,因为这里面的信息都是以数据行的形式存放的,而不是以数据块的形式存放的。

library cache包括shared sql areas,private sql areas(共享服务器模式下),pl/sql,package,control structure(比如locks,library cache handles)

SQL AREA:也可以叫做CRSR,表示shared cursor,存放共享的SQL语句。

select pool,name,bytes from v$sgastat where name='free memory' and pool='shared pool';

v$db_object_cache来显示library cache中有哪些对象被缓存,以及这些对象的大小尺寸。

SELECT owner, name, sharable_mem, kept FROM V$DB_OBJECT_CACHE WHERE sharable_mem > 102400 AND kept = 'NO' ORDER BY sharable_mem DESC;

v$librarycache

查库缓冲区的使用情况

SELECT name,type,sharable_mem FROM V$DB_OBJECT_CACHE ORDER BY sharable_mem DESC;

select sum(sharable_mem) from v$db_object_cache;

查询shared pool的分配情况

select pool,name,bytes from v$sgastat where name='free memory' and pool='shared pool';

select * from v$sgastat where pool='shared pool' ;

sgacurrent size

select component,current_size,oper_count,granule_size from v$sga_dynamic_components;

sga的分配情况

select * from v$sgainfo;

sgafree memory

select * from v$sga_dynamic_free_memory;

转载于:https://www.cnblogs.com/yifan268/archive/2008/07/07/1237670.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值