Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Calculating Physical memory for Oracle Sessions
Anurag,
-- Tim Gorman consultant - Evergreen Database Technologies, Inc. website = http://www.evdbt.com email = tim@evdbt.com mobile = +1-303-885-4526 fax = +1-303-484-3608
Hi All,
My 9.2.0.7 database has an sga size of 1.3 GB and the RAM size is 4096 MB.
We were facing a problem of memory contention yesterday due to the increased number of sessions/connections to the database.
96% of the Physical memory and 94-95% of virtual memory was used, when checked the processes in the IBM AIX server.
So when the number of sessions increased, listener stopped receiving newer connections.
The ever increasing number of sessions were taking up the memory.
Latch free contention was there and found library cache latch stats were showing large number of sleeps.
If we need to increase shared pool, memory was not available.
One option we are planning is to increase the physical memory.
So my question is how do we determine the size of the memory used for Oracle sessions.
Say for adding another 100 sessions, how much memory will it take, so that it will help us in adding more RAM in to the server.
Thanks for your thoughts on this.
Anurag
#!/bin/ksh #============================================================================
# File: oramem.sh
# Type: UNIX korn-shell script
# Author: Tim Gorman (Evergreen Database Technologies Inc.)
# Date: 28jun02
#
# # This shell script utilizes the "pmap -x" command to total up the # total amount of virtual memory used by all of the Oracle server # processes (both "background" and "foreground") belonging to a # database instance. #
# Modifications:
# TGorman 28jun02 written for Solaris 2.8 # THaeber 02apr03 added logic to handle more than one shared segment # TGorman 19mar04 calculated "private" and "shared" totals differently, # by summarizing "heap" and "stack" totals into # "private", subtracting that from total to obtain # "shared" total #============================================================================ # #----------------------------------------------------------------------------
#----------------------------------------------------------------------------_Prog=oramem.sh
echo "\nUsage: \"${_Prog} [ verbose ]\"; aborting...\n" exit 1
# #----------------------------------------------------------------------------
#----------------------------------------------------------------------------if (( $# == 1 ))
_VerboseFlag=TRUE
else
_VerboseFlag=FALSE
fi
# #----------------------------------------------------------------------------
#----------------------------------------------------------------------------if [[ "${ORACLE_SID}" = "" ]]
echo "ORACLE_SID not set; aborting..." exit 1
# #----------------------------------------------------------------------------
#----------------------------------------------------------------------------_TmpFile=/tmp/${_Prog}_$$.tmp
# #----------------------------------------------------------------------------
#---------------------------------------------------------------------------- ps -eo fname,pid,args | \ sed '1d' | \ awk '{ \ if ($1 == "oracle") \ { \ if (substr($3,1,6)=="oracle") \ { \ printf("%s %s\n", substr($3,7,10), $0); } \ else { \ printf("%s %s\n", substr($3,10,10), $0); } \ } \ }' > ${_TmpFile}
# #----------------------------------------------------------------------------
#----------------------------------------------------------------------------if [[ "${_VerboseFlag}" = "TRUE" ]]
echo "PID\tCommand\t\t\tShm\t\tPriv" echo "===\t=======\t\t\t===\t\t===="
# #----------------------------------------------------------------------------
#---------------------------------------------------------------------------- integer _MaxSHR=0 integer _TotPRV=0
# if [[ "${ORACLE_SID}" = "${_SID}" ]] then if [[ "`echo ${_ARGV0} | grep oracle${ORACLE_SID}`" = "" ]] then integer _BG=${_BG}+1 else integer _FG=${_FG}+1 fi # pmap -x ${_PID} > ${_TmpFile2} 2>&1 if (( $? != 0 )) then echo "warning: \"pmap -x ${_PID}\" failed..." fi # # 02-APR-2003 Ty Haeber # # Some systems may have more than one shared segment; therefore, I had to # add some logic to sum this field. # ###integer _SGA=`grep shmid ${_TmpFile2} | awk '{print $5}'` ###integer _SGA=`grep shmid ${_TmpFile2} | awk '{ s += $5 } END {print s}'` ###integer _SHR=`grep 'total Kb' ${_TmpFile2} | awk '{print $5}'` ###integer _PRV=`grep 'total Kb' ${_TmpFile2} | awk '{print $6}'` ###integer _SHR=${_SHR}+${_SGA} ###integer _PRV=${_PRV}-${_SGA} # # 19-MAR-2004 Tim Gorman # # Calculated a different way, by isolating heap and stack and subtracting that from the total... # integer _HEAP=`grep -i heap ${_TmpFile2} | awk '{i+=$2}END{print i}'` ###echo "_HEAP=${_HEAP}" integer _STACK=`grep -i stack ${_TmpFile2} | awk '{i+=$2}END{print i}'` ###echo "_STACK=${_STACK}" integer _PRV=${_HEAP}+${_STACK} integer _ALL=`grep 'total Kb' ${_TmpFile2} | awk '{print $3}'` integer _SHR=${_ALL}-${_PRV} # if (( ${_SHR} > ${_MaxSHR} )) then integer _MaxSHR=${_SHR} fi integer _TotPRV=${_TotPRV}+${_PRV} ###echo "_ALL=${_ALL}, _SHR=${_SHR}, _PRV=${_PRV}, _TotPRV=${_TotPRV}" if [[ "${_VerboseFlag}" = "TRUE" ]] then echo "${_PID}\t${_ARGV0}\t\t${_SHR}\t\t${_PRV}" fi fi #
# #----------------------------------------------------------------------------
#----------------------------------------------------------------------------integer _TotMEM=${_MaxSHR}+${_TotPRV}
echo "# Procs\t\t# Procs\t\tMax\t\tSum" echo "Foregrnd\tBackgrnd\tShm Kb\t\tPriv Kb\t\tTotal Kb" echo "========\t========\t======\t\t=======\t\t========" echo "${_FG}\t\t${_BG}\t\t${_MaxSHR}\t\t${_TotPRV}\t\t${_TotMEM}"echo
# #----------------------------------------------------------------------------
#----------------------------------------------------------------------------exit 0
-- http://www.freelists.org/webpage/oracle-lReceived on Wed Nov 29 2006 - 22:21:27 CST
![]() |
![]() |