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: Are there any Init<SID>.ora parameters to configure the PGA?

Re: Are there any Init<SID>.ora parameters to configure the PGA?

From: Oweson Flynn <Oweson.Flynn_at_liberty.co.za>
Date: Thu, 25 Jan 2001 11:47:19 +0200
Message-Id: <10752.127448@fatcity.com>


Thanx,

I have a copy of it, and will study it further tonight!

Looks like you and I are the only two on the list at the moment! I am in South Africa, where it is almost 12 noon - where are you - in the states?

Regards
Oweson Flynn



Certified Oracle DBA
The Flynn Consultancy
Tel: 082-600-7-006
Fax: (011) 782-9313
EMail: oef_at_icon.co.za
----- Original Message -----
From: "paquette stephane" <stephane_paquette_at_yahoo.com> To: "Multiple recipients of list ORACLE-L" <ORACLE-L_at_fatcity.com> Sent: Thursday, January 25, 2001 11:20 AM Subject: Re: Are there any Init<SID>.ora parameters to configure the PGA?

Hi,

The uga,pga stuff is very well explained in Steve Adams book.
My book is at home (pretty usefull isn't), but by memory if you're not using MTS, the size of hash_area_size and sort_area_size will be taken in the user's process. This is a script I used for monitoring that :

undefine uti
select ses.sid, substr(s.username,1,15) uti,

       substr(stat.name,1,30) stat,
round(ses.value/1024) as "Value K"

from v$sesstat ses,
     v$statname stat,
     v$session s

where ses.statistic# = stat.statistic#
and stat.name in ('session pga memory', 'session pga memory max','session uga memory')
and s.sid=ses.sid
and s.username like upper('%&uti%')
order by uti, ses.sid,stat.name
;
Stephane Paquette
DBA Oracle
stephane_paquette_at_yahoo.com

Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices. http://auctions.yahoo.com/
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: =?iso-8859-1?q?paquette=20stephane?=
  INET: stephane_paquette_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).




********************************************************************

This message may contain information which is confidential and subject to legal privilege. If you are not the intended recipient, you may not peruse, use, disseminate, distribute or copy this message. If you have received this message in error, please notify the sender immediately by email, facsimile or telephone and return and/or destroy the original message.
Received on Thu Jan 25 2001 - 03:47:19 CST

Original text of this message

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