<?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 consumption in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632514#M41593</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;With some variation ;-)&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o ruser,vsz,pid,args | sort -rnk2 |more&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;raj</description>
    <pubDate>Tue, 18 Dec 2001 17:02:04 GMT</pubDate>
    <dc:creator>Roger Baptiste</dc:creator>
    <dc:date>2001-12-18T17:02:04Z</dc:date>
    <item>
      <title>Memory consumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632512#M41591</link>
      <description>How do i find the memory consumed by a process or a group of process? I am looking for a command line&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Biren</description>
      <pubDate>Tue, 18 Dec 2001 16:43:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632512#M41591</guid>
      <dc:creator>Biren</dc:creator>
      <dc:date>2001-12-18T16:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Memory consumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632513#M41592</link>
      <description>UNIX95= ps -e -o vsz=Kbytes -o pid,args=Command-Line | sort -rnk1 &lt;BR /&gt;This command is entered all on one line.&lt;BR /&gt;&lt;BR /&gt;Eileen&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Dec 2001 16:46:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632513#M41592</guid>
      <dc:creator>Eileen Millen</dc:creator>
      <dc:date>2001-12-18T16:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Memory consumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632514#M41593</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;With some variation ;-)&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o ruser,vsz,pid,args | sort -rnk2 |more&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;raj</description>
      <pubDate>Tue, 18 Dec 2001 17:02:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632514#M41593</guid>
      <dc:creator>Roger Baptiste</dc:creator>
      <dc:date>2001-12-18T17:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Memory consumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632515#M41594</link>
      <description>Hi,&lt;BR /&gt;Try this command&lt;BR /&gt;UNIX95= ps -e -o ruser,vsz,pid,pcpu,args | sort -rnk2  | more &lt;BR /&gt;&lt;BR /&gt;Also try this command for cpu intensive process&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o "pcpu vsz ruser pid stime time state args" | sort -rn |head -10&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-USA</description>
      <pubDate>Tue, 18 Dec 2001 17:04:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632515#M41594</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2001-12-18T17:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Memory consumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632516#M41595</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Please Note that there is space between  UNIX95= and ps</description>
      <pubDate>Tue, 18 Dec 2001 17:06:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632516#M41595</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2001-12-18T17:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Memory consumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632517#M41596</link>
      <description>Thanks all for the reply.&lt;BR /&gt;Here is the command i executed&lt;BR /&gt;&lt;BR /&gt;$ UNIX95= ps -e -o vsz -opid,args | sort -rnk1 | grep oracleSC01&lt;BR /&gt;  32960 17038 oracleSC01 (DESCRIPTION=LOCAL=no)&lt;BR /&gt;  32832 14884 oracleSC01 (DESCRIPTION=LOCAL=no)&lt;BR /&gt;&lt;BR /&gt;I am trying to interpret this results. &lt;BR /&gt;1st column is the memory used by the process. Which is 32960 and 32832 both is around 32 MB each. The process listed above is connection to Oracle (shadow process). That means each connection will take up 32 MB of memory!?!?&lt;BR /&gt;&lt;BR /&gt;Also, i am monitoring memory usage using gpm (glance), for each new connection it is adding 2.2 MB only to User Mem!!&lt;BR /&gt;&lt;BR /&gt;What am i missing here? Thanks again&lt;BR /&gt;&lt;BR /&gt;Biren&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Dec 2001 18:39:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632517#M41596</guid>
      <dc:creator>Biren</dc:creator>
      <dc:date>2001-12-19T18:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Memory consumption</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632518#M41597</link>
      <description>The "vsz" in ps includes the text, stack and data segments of a process.  Use glance to check the sizes of the individual memory regions of these processes and you will see that most of the 30Meg is coming from the text segment.&lt;BR /&gt;&lt;BR /&gt;The text segment is shared by all Oracle processes, which means that these processes are not using 32Meg each as the ps output says.  On my db system the vsz value for all processes adds up to about 1Gig more than the actual amount of virtual memory in use because of this.&lt;BR /&gt;&lt;BR /&gt;I'm not sure of an easy way to simply look at the data segment size of the process.  q4 would do it but usually its not important to go into this level of detail.  &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Steve&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Dec 2001 10:09:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-consumption/m-p/2632518#M41597</guid>
      <dc:creator>Steven Gillard_2</dc:creator>
      <dc:date>2001-12-20T10:09:37Z</dc:date>
    </item>
  </channel>
</rss>

