Philip Howe’s Oracle Blog

Just another WordPress.com weblog

Archive for August, 2012

What’s in the object cache?

Posted by philiphowe on August 23, 2012

 

SELECT owner, name, o.type, sharable_mem,
loads, executions, kept
FROM v$db_object_cache o
WHERE loads > 0 AND o.type in (‘PACKAGE’, ‘FUNCTION’, ‘PROCEDURE’, ‘TRIGGER’, ‘SEQUENCE’)
ORDER BY sharable_mem DESC

 

 

Posted in Database, SQL | Leave a Comment »