![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Resources for the Solaris OS and OpenSolaris on HP Servers | iBot | Solaris BigAdmin RSS | 0 | 05-29-2009 09:30 AM |
| Resources for the Solaris OS on IBM Servers | iBot | Solaris BigAdmin RSS | 0 | 05-27-2009 09:30 AM |
| Resources for the Solaris OS on Dell Servers | iBot | Solaris BigAdmin RSS | 0 | 05-27-2009 09:30 AM |
| Resources for the Solaris OS on IBM and Dell Servers | iBot | Solaris BigAdmin RSS | 0 | 11-24-2008 03:30 PM |
| Migrating to Itanium 2 Servers: Part 1 - Dr. Dobb's Journal | iBot | UNIX and Linux RSS News | 0 | 08-23-2007 03:10 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
I'm in the midst of a similar project. I used the following script to determine shared memory usage on Solaris hosts for Sybase and Oracle. I ran this several times a day on each host, though the numbers really didn't change much. I found this to be much better than utilizing what the DB was configured to use, as this will show what the DB actually utilizes. Code:
if ipcs -ma | grep sybase > /dev/null ; then
echo Sybase
ipcs -ma | grep sybase | awk '{ T+=($10/1024/1024) } END { print T }'
elif ipcs -ma | grep oracle > /dev/null ; then
echo Oracle
ipcs -ma | grep oracle | awk '{ T+=($10/1024/1024) } END { print T }'
fi
|
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|