其他分享
首页 > 其他分享> > dbms_shared_pool

dbms_shared_pool

作者:互联网

dbms_shared_pool 包提供了对共享池的一些过程,函数的访问;
显示共享池的对象尺寸;
绑定对象到共享池;
清除绑定到共享池的对象;
使用改包时,必须用 @?/rdbms/admin/dbmspool.sql 来创建该包;

– 1.sizes
/*
该过程用于显示在共享池中大于指定尺寸的对象;
*/
dbms_shared_pool.sizes(minsize => );

– 2.keep
/*
该过程用于将特定的对象绑定到共享池;
name –要绑定的对象名
flag –要绑定的对象类型 (
p 函数,过程,包
T 对象类型
R 触发器
Q 序列

*/
dbms_shared_pool.keep(name => ,flag => );

– 3.unkeep
/*
该过程用于清除绑定到共享池的特定对象;
name –对象名
flag –对象类型 (
p 函数,过程,包
T 对象类型
R 触发器
Q 序列

*/

dbms_shared_pool.unkeep(name => ,flag => );

– 4.aborted_request_threshold
/*
该过程用于设置共享池种植请求的阀门;

*/
dbms_shared_pool.aborted_request_threshold(threshold_size => );

标签:dbms,对象,绑定,shared,共享,pool
来源: https://www.cnblogs.com/jijm123/p/16396416.html