<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Memory usage by Oracle Database in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682143#M245602</link>
    <description>hi,&lt;BR /&gt;just one remark!&lt;BR /&gt;&lt;BR /&gt;Measuring the size of process memory from the OS can be tricky. Because the processes all attach to the shared memory of the SGA, this is reported as part of the process size.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 02 Dec 2005 04:37:38 GMT</pubDate>
    <dc:creator>Yogeeraj_1</dc:creator>
    <dc:date>2005-12-02T04:37:38Z</dc:date>
    <item>
      <title>Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682137#M245596</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We have one HP 9000/800/N4000-44 machine having 12 Gb memory. There are several Oracle databases running in the machine. We want to calculate the memory usage of individual databases. How this can be achived ? We have tried ps -o command for this. Not sure whether this gives accurate result. Please advise.</description>
      <pubDate>Thu, 01 Dec 2005 06:33:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682137#M245596</guid>
      <dc:creator>Soumyadip Pal</dc:creator>
      <dc:date>2005-12-01T06:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682138#M245597</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;for the database itself use the "show sga" command ( as sysdba).&lt;BR /&gt;This does not include the oracle (client) processes.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Thu, 01 Dec 2005 06:54:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682138#M245597</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-12-01T06:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682139#M245598</link>
      <description>see attachment&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Thu, 01 Dec 2005 06:56:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682139#M245598</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-12-01T06:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682140#M245599</link>
      <description>Hi Jean,&lt;BR /&gt;&lt;BR /&gt;Thanks for replying. What I feel the database does not uses the whole amount of SGA defined all the time. Also, I need to calculate the memory used by client process, which I belive uses a part of Shared memory (SGA) and some private memory.</description>
      <pubDate>Thu, 01 Dec 2005 07:52:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682140#M245599</guid>
      <dc:creator>Soumyadip Pal</dc:creator>
      <dc:date>2005-12-01T07:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682141#M245600</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;the fixed will always be allocated and you can chexk it with the size of the associated shared memory segment(s).&lt;BR /&gt;&lt;BR /&gt;The PGA for the oracle processes is made of stack and UGA. If you use MTS the UGA will be located in the SGA.&lt;BR /&gt;&lt;BR /&gt;see attachment.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Thu, 01 Dec 2005 08:29:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682141#M245600</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-12-01T08:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682142#M245601</link>
      <description>I use this UNIX script which includes also the size of the programs:&lt;BR /&gt;&lt;BR /&gt;/usr/ccs/bin/size $ORACLE_HOME/bin/oracle|awk '{print $1,$3,$5}'|read Mtext Mdata Mbss&lt;BR /&gt;#echo $Mtext $Mdata $Mbss&lt;BR /&gt;echo "==============================="&lt;BR /&gt;echo "          $ORACLE_SID"&lt;BR /&gt;echo "==============================="&lt;BR /&gt;$ORACLE_HOME/bin/sqlplus -s "/ as sysdba"&amp;lt;</description>
      <pubDate>Fri, 02 Dec 2005 04:13:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682142#M245601</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2005-12-02T04:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682143#M245602</link>
      <description>hi,&lt;BR /&gt;just one remark!&lt;BR /&gt;&lt;BR /&gt;Measuring the size of process memory from the OS can be tricky. Because the processes all attach to the shared memory of the SGA, this is reported as part of the process size.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 02 Dec 2005 04:37:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682143#M245602</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-12-02T04:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Memory usage by Oracle Database</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682144#M245603</link>
      <description>First, there many ways to do it.&lt;BR /&gt;1. Through oracle&lt;BR /&gt;2. OS commands-not very accurate, but can give you required information.&lt;BR /&gt;3. glance-accurate.&lt;BR /&gt;&lt;BR /&gt;Point 2 would require you distingush between different ORACLE SID processes. (even though they run under same use id)&lt;BR /&gt;Say process oracle xyzABC - is ABC oracle instance process and dseFRG is FRG oracle sid.&lt;BR /&gt;The processes memory, now can be calculated as follows.&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -ef -o vsz,ruser,pid,args | grep -i '[a]bcXYZ' | more&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -ef -o vsz,ruser,pid,args | grep -i '[d]esFRG' | more&lt;BR /&gt;&lt;BR /&gt;3. Do you have glance?? If yes, fire up gpm and check it. If you have PV, then you can check old history also. In case you do not have PV, you will have to manage with mwa extract command. If you require extract details, please reply.</description>
      <pubDate>Fri, 02 Dec 2005 05:01:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-usage-by-oracle-database/m-p/3682144#M245603</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-12-02T05:01:35Z</dc:date>
    </item>
  </channel>
</rss>

