AIX

AIX

Connect with fellow AIX users and experts to gain knowledge, share insights, and solve problems.


#Power
 View Only
  • 1.  paging space getting grow

    Posted Tue July 18, 2006 09:08 AM

    Originally posted by: kahn


    Hi,

    I have paging space question.

    we have p570 (O/S level 5300-01, one LPAR, internal disk (73G)and EMC external disks, mirrored rootvg, other vgs on local disks and raid 10 on EMC) and oracle 10G running on it with some of batch jobs. When I run the topas, I see the paging space is growing quickly which end up 100% of paging space in 10 days. What is the best way to find the problem?
    #AIX-Forum


  • 2.  Re: paging space getting grow

    Posted Tue July 18, 2006 12:48 PM

    Originally posted by: SystemAdmin


    Try this little script. It should give you your memory hogs.

    #!/usr/bin/ksh

    echo "\nSorted by Virtual Memory Size:\n"
    echo "\nUSER PID %CPU %MEM SZ RSS TTY STAT STIME TIME COMMAND"

    ps aux | sort -rn -k 5,6 | head -16
    #AIX-Forum