Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: RE: Where is the memory gone?

RE: RE: Where is the memory gone?

From: Christian Trassens <ctrassens_at_yahoo.com>
Date: Mon, 10 Dec 2001 08:18:44 -0800
Message-ID: <F001.003D8F19.20011210080022@fatcity.com>

Answering your first message about the shrink of free space in shared pool. Check the parsing ratio:

The hard parse with something like this

SELECT substr(sql_text,1,40) "SQL",

                 count(*) , 
                 sum(executions) "TotExecs"
            FROM v$sqlarea
           WHERE executions < 5
           GROUP BY substr(sql_text,1,40)
          HAVING count(*) > 30
           ORDER BY 2
          ;

The soft parsing something like this:

select count(*) from v$sqlarea
where version_count>5;

And about parsing look for a note in metalink about parameter _sqlexec_progression_cost.

Try with cursor_sharing. Also refer to possibles bugs related in metalink.

And about parsing you can also look in the v$sysstat for statistics related.

Check the shared pool latch rate too.

Regards.


ENG. Christian Trassens
Senior DBA
ctrassens_at_yahoo.com
christian_trassens_at_yahoo.es
Phone : +34-699240979
+34-649824704

Do You Yahoo!?
Send your FREE holiday greetings online! http://greetings.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Christian Trassens
  INET: ctrassens_at_yahoo.com

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 Mon Dec 10 2001 - 10:18:44 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US