Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

shared pool size

Ora_83Nov 29 2009 — edited Dec 2 2009
Hi

How can I figure out wheter I need to resize shared pool ? (Oracle 9i)

When I issue:

/* Shared pool usage */
select 100-round(a.bytes/b.sm*100,2) pctused from
(select bytes from v$sgastat where name='free memory' AND pool='shared pool') a,
(select sum(bytes) sm from v$sgastat where pool = 'shared pool') b;

PCTUSED
----------------
95.74
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 28 2009
Added on Nov 29 2009
5 comments
781 views