Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: swapping
This will give Oracle's numbers on Solaris. It's a cut from an old Oracle Solaris Admin Guide. Then just use top for the other's. Welcome to Solaris memory/swap hell. Ciao
#!/usr/bin/sh
# Copyright 2000 Oracle Corporation
#
# modification history:
# date by comments
# ---------- -------- ----------------
# 07/15/2000 rgulledg original program
#
usage()
{
echo "Usage: $0 [ SB ]" echo "Usage: $0 [ P <pid> ]" echo "Usage: $0 [ h ]" echo " " echo "specify 'S' for Oracle shadow processes" echo "specify 'B' for Oracle background processes (includes sharedmemory SGA)"
echo "An individual [P]rocess can also be specified." echo " " echo "Although the Oracle server background processes memory usageshould"
echo "memory usage for the processes specified." echo " " echo "The 'B' option shows the sum of memory usage for all Oracle server" echo "background processes, including shared memory like the SGA." echo " " echo "The 'S' option shows the sum of private memory usage by all" echo "shadow processes. It does not include any shared memory like the" echo "SGA since these are part of the Oracle server background processes." echo " " echo "The 'P' option shows memory usage for a specified process, broken" echo "into two categories, private and shared. If the same executable" echo "for this process was invoked again, only the private memory" echo "would be allocated, the rest is shared with the currently running" echo "process." echo " "
if [ "X$PidOwner" != "X$CurOwner" ];then echo "Not owner of pid $2, or pid $2 does not exist" echo " "
Pmap="/usr/proc/bin/pmap" SharUse="/tmp/omemuseS$$" PrivUse="/tmp/omemuseP$$" ShadUse="/tmp/omemuseD$$"
TotalShad=0 TotalShar=0 TotalPriv=0
echo " -----"
Jeremiah Wilton <jeremiah_at_ora-600. To: "Chen, Sarah" <Sarah_Chen_at_BUDCO.com> net> cc: "'oracle-l_at_freelists.org'" <oracle-l_at_freelists.org>, (bcc: Brian P Sent by: MacLean/PHX/eFunds) oracle-l-bounce_at_fr Subject: Re: swapping eelists.org 01/06/2005 11:39 AM Please respond to jeremiah
On Thu, 6 Jan 2005, Chen, Sarah wrote:
> I am encountering high swapping problem on Oracle database 9.2.0.4 with 16G
> RAM on Sun Sol 2.8 platform. > > Can anyone provide good UNIX commands/tips? I would also like to know howto
A good place to start would be to find out which processes are using the most resident memory, and thus forcing swapping.
On Solaris 8, you can run 'top -o res' to have top sort by resident memory.
It could be one or just a few processes sucking up memory, or many processes. So also try 'ps -eo pid,rss,comm | sort -n +1' to display all processes and their resident set size.
You have to do the math. Add up all the resident memory being used by processes and see how that compares available memory and swap space. The sum of all frequently active processes has to fit into available memory if you want to avoid swapping.
You can have many inactive processes occupying swap space with little impact, so the math doesn't have to be perfect.
-- Jeremiah Wilton ORA-600 Consulting Emergencies - Seminars - Hiring http://www.ora-600.net -- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Thu Jan 06 2005 - 13:18:10 CST
![]() |
![]() |