- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory Usage
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2006 05:38 PM
08-27-2006 05:38 PM
Memory Usage
From GlancePlus
Total VM : 2.09gb Sys Mem : 1.23gb User Mem: 756.8mb Phys Mem: 4.00gb
Active VM: 680.4mb Buf Cache: 1.98gb Free Mem: 57.4mb
There are 2 oracle instance running
DB1 : Total System Global Area 252013040 bytes
with 26 dedicated processes
DB2 : Total System Global Area 114191048 bytes
with 13 dedicated processes
I have questions
1. Why just only 57.4 MB Free Memory
2. Why each Oracle dedicated process consumes 70 ~ 130 MB
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2006 07:49 PM
08-27-2006 07:49 PM
Re: Memory Usage
Your system parameter related with memory management is set to too high
It may be dbc_max_pct = 50%
you can reduce this value to 10~15%
along with dbc_min_pct must be less then dbc_max_pct.
you can get more physical memory to allocate
Regards
nanan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2006 01:11 AM
08-28-2006 01:11 AM
Re: Memory Usage
1) You are most likely using default settings for a dynamic OS buffer cache, which grows to consume nearly all available RAM. Currently, your buffer cache is consuming half of your physical RAM (Buf Cache: 1.98gb). As was already suggested, you should reduce the amount of memory dedicated to buffer cache by setting kernel tunable 'bufpages' to a fixed value and 'nbuf' to zero.
System performance will be greatly improved by allocating this unused RAM to Oracle's buffer cache (which does a much better job of caching data than the OS buffer cache). See the attached "HP-UX Performance Cookbook" for more information.
2) What you're referring to is called the 'PGA' or 'Program Global Area', which is created for each Oracle session. This region contains data and control info for a session. Under Oracle 9i and later, PGA size for dedicated server connections is determined by the DBMS based on PGA_AGGREGATE_TARGET.
PGA size for shared server connections is determined by SORT_AREA_SIZE, HASH_AREA_SIZE, and a few other parameters.
These parameters are set in init
In both types of connection, a small portion of PGA is dedicated to OS overhead, and cannot be changed.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2006 11:44 AM
08-28-2006 11:44 AM
Re: Memory Usage
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-28-2006 02:58 PM
08-28-2006 02:58 PM
Re: Memory Usage
But both bufpages and nbuf are already Zero.
:D
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2006 05:51 AM
08-29-2006 05:51 AM
Re: Memory Usage
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2006 09:29 PM
08-29-2006 09:29 PM