Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: space used by pinned objects
try this:
select sum(sharable_mem)
from v$db_object_cache
where type in ('PACKAGE')and kept='YES';
srinivas
-----Original Message-----
Sent: Wednesday, December 05, 2001 1:55 AM
To: Multiple recipients of list ORACLE-L
I've pinned some procs that were being loaded very frequently.
How can I determine how much space they are using in the shared pool and
that I
have plenty of space left in the shared pool? I like pinning objects,
but I
don't want to end up with a shared pool contiguous memory problem.
Thanks.
Doug
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Doug C
INET: dcowles_at_i84.net
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Dec 05 2001 - 01:58:55 CST
![]() |
![]() |