<?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: free up memory from a dead Oracle process in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583324#M826741</link>
    <description>hi again,&lt;BR /&gt;&lt;BR /&gt;you can also know if the process 25902 belongs to the running instance or not - by running the following query:&lt;BR /&gt;select b.sid SID,b.serial# "Serial#", c.spid "srvPID", b.osuser, b.username,  b.status, b.client_info from v$session b, v$process c where b.paddr = c.addr  and c.sPID = 25902&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
    <pubDate>Fri, 15 Jul 2005 02:15:11 GMT</pubDate>
    <dc:creator>Yogeeraj_1</dc:creator>
    <dc:date>2005-07-15T02:15:11Z</dc:date>
    <item>
      <title>free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583321#M826738</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;i have a Oracle 9iv2 running with two instances. Something happend during the startup of the second instance.&lt;BR /&gt;&lt;BR /&gt;Unfortunately it still consumes a lot of memory, but there no process connectet to the memory as far as i see.&lt;BR /&gt;&lt;BR /&gt;The output from UNIX95=1 ps -eo vsz,ruser,pid,args | sort -rn | head -20 shows large memory segments allocated by a process ID 25902.&lt;BR /&gt;&lt;BR /&gt;But there is no such process anymore. It was there at the beginning, but somhow this process is gone now.&lt;BR /&gt;&lt;BR /&gt;How can i free up this allocated memory without rebooting the server or restarting oracle. We are in our normal buisness hours right now and the first instance is productive.&lt;BR /&gt;&lt;BR /&gt;Kind regards&lt;BR /&gt;&lt;BR /&gt;Stefan</description>
      <pubDate>Fri, 15 Jul 2005 02:00:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583321#M826738</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2005-07-15T02:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583322#M826739</link>
      <description>Sorry i ment to say the output from ipcs -bmop|sort -rnk8&lt;BR /&gt;&lt;BR /&gt;Here ist what ipcs -bmop|sort -rnk8 shows:&lt;BR /&gt;&lt;BR /&gt;m      72709 0xc795e2f0 --rw-rw----    oracle       dba    209 2434244608 12538 26805&lt;BR /&gt;m     282116 0x00000000 --rw-rw----    oracle       dba      0 1224736768 25902 25902&lt;BR /&gt;m      11271 0x00000000 --rw-rw----    oracle       dba      0  620756992 25902 25902&lt;BR /&gt;m       3080 0x00000000 --rw-rw----    oracle       dba      0  167772160 25902 25902&lt;BR /&gt;m       4105 0x00000000 --rw-rw----    oracle       dba      0   50331648 25902 25902&lt;BR /&gt;m 1896619018 0x00000000 --rw-rw----    oracle       dba      0   33554432 25902 25902&lt;BR /&gt;m   31901702 0x431c78ac --rw-rw-rw-    daemon    daemon      1    5767168 22224 22220&lt;BR /&gt;m          1 0x4e0c0002 --rw-rw-rw-      root      root      1      61760   627   627&lt;BR /&gt;m          2 0x4120138b --rw-rw-rw-      root      root      1       8192   627   639&lt;BR /&gt;m      21507 0x5e10007f --rw-------      root      root      1        512  2099  2099&lt;BR /&gt;m          0 0x411c0262 --rw-rw-rw-      root      root      0        348   627   627&lt;BR /&gt;T         ID     KEY        MODE        OWNER     GROUP NATTCH      SEGSZ  CPID  LPID&lt;BR /&gt;Shared Memory:&lt;BR /&gt;IPC status from /dev/kmem as of Fri Jul 15 11:04:37 2005&lt;BR /&gt;&lt;BR /&gt;The topmost result is from the first instance. This entry is ok. The problem are the following entries with the reference to the process ID 25902.&lt;BR /&gt;&lt;BR /&gt;Regards Stefan</description>
      <pubDate>Fri, 15 Jul 2005 02:08:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583322#M826739</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2005-07-15T02:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583323#M826740</link>
      <description>hi stefan,&lt;BR /&gt;&lt;BR /&gt;ps -ef|grep 25902 should give you hint on the specific process.&lt;BR /&gt;&lt;BR /&gt;you can further analyse the process activity using glance.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 15 Jul 2005 02:11:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583323#M826740</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-07-15T02:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583324#M826741</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;you can also know if the process 25902 belongs to the running instance or not - by running the following query:&lt;BR /&gt;select b.sid SID,b.serial# "Serial#", c.spid "srvPID", b.osuser, b.username,  b.status, b.client_info from v$session b, v$process c where b.paddr = c.addr  and c.sPID = 25902&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 15 Jul 2005 02:15:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583324#M826741</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-07-15T02:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583325#M826742</link>
      <description>Hi yogeeraj,&lt;BR /&gt;&lt;BR /&gt;unfortunately this process isn't there anymore. ps -ef | grep 25902 doesn't show a running process.&lt;BR /&gt;&lt;BR /&gt;Also normally oracle processes are linked to the instance name. But also there is no process with an reference to the second instance. Only this process 25902 had an reference to the second instance befor it disappeared.&lt;BR /&gt;&lt;BR /&gt;Regards Stefan</description>
      <pubDate>Fri, 15 Jul 2005 02:20:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583325#M826742</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2005-07-15T02:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583326#M826743</link>
      <description>Hi again yogeeraj,&lt;BR /&gt;&lt;BR /&gt;this process is not belonging to the first instance. Your select returns with "No rows selected".&lt;BR /&gt;&lt;BR /&gt;I can't run this select on the second instance because its not running. And i don't want to start it up during buisiness hours as it seems that the last startupattempt failed and locked my memory.&lt;BR /&gt;&lt;BR /&gt;What else can i do?&lt;BR /&gt;&lt;BR /&gt;Regards Stefan&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jul 2005 02:26:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583326#M826743</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2005-07-15T02:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583327#M826744</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;so at the database level, we cannot do much...&lt;BR /&gt;&lt;BR /&gt;maybe at the OS level, we can try something..&lt;BR /&gt;&lt;BR /&gt;thinking...&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 15 Jul 2005 03:07:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583327#M826744</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-07-15T03:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583328#M826745</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;do you have metalink access?&lt;BR /&gt;check note: 115235.1 - "Resolving ORA-7279 or ORA-27146 errors when starting instance"&lt;BR /&gt;&lt;BR /&gt;it mentions about semaphores from the "crashed instance" which may still be allocated and that needs to be removed and how to do it.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 15 Jul 2005 03:15:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583328#M826745</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-07-15T03:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583329#M826746</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;thank you very much. You saved my day!&lt;BR /&gt;&lt;BR /&gt;This metalink article pointed to the right direction. And i allready had the information i needed (from above ipcs command) to free this memory. I just didn't recognize how close i allready was.&lt;BR /&gt;&lt;BR /&gt;It turned out that i had some hanging shared memory allocations. Not semaphores like in the metalink article mentioned.&lt;BR /&gt;&lt;BR /&gt;But using ipcrm -m with the id i allready had did the trick.&lt;BR /&gt;&lt;BR /&gt;The memory is freed without disturbing the production instance.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your help.&lt;BR /&gt;&lt;BR /&gt;Regards Stefan</description>
      <pubDate>Fri, 15 Jul 2005 04:09:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583329#M826746</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2005-07-15T04:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583330#M826747</link>
      <description>hi stefan,&lt;BR /&gt;&lt;BR /&gt;great that you managed to fix it!&lt;BR /&gt;&lt;BR /&gt;Thank also metalink. whenever, i have doubts, i go there first! Tons of information available there. We are lucky enough to afford such a facility! &lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 15 Jul 2005 05:47:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583330#M826747</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-07-15T05:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583331#M826748</link>
      <description>Keep oracle patched too :).</description>
      <pubDate>Fri, 15 Jul 2005 10:52:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583331#M826748</guid>
      <dc:creator>generic_1</dc:creator>
      <dc:date>2005-07-15T10:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: free up memory from a dead Oracle process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583332#M826749</link>
      <description>i know metalink is a really good resource. Unfortunately sometimes i miss to find the right words to search for. &lt;BR /&gt;&lt;BR /&gt;And as metalink is no person i can talk to its sometimes difficult to retrieve the necessary information.&lt;BR /&gt;&lt;BR /&gt;Regards Stefan</description>
      <pubDate>Mon, 18 Jul 2005 00:47:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/free-up-memory-from-a-dead-oracle-process/m-p/3583332#M826749</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2005-07-18T00:47:15Z</dc:date>
    </item>
  </channel>
</rss>

