- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- oracle sga etc. and memory on new small system...
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
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
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
тАО05-17-2007 12:52 AM
тАО05-17-2007 12:52 AM
Oracle dba, and dba consultant, are saying sga is a reasonable value of aprox 450 Meg with a pga_aggregate_target of 153 Meg. They recommend setting dbc_max_pct down from 10 to 5 and dbc_min_pct to a value of 2 to free up additional RAM on the server from the filesystem buffer cache. It will also ease the memory pressure. That's all they have to say about it.
I know it would be best to buy more memory. But short of doing that, can anyone advise if the sga / pga sizes might need further adjustment? Also, reducing max buffer cache from 10 to 5 will only free up additional 50MB of memory, - is this advisable?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 02:15 AM
тАО05-17-2007 02:15 AM
SolutionI would really worry too much about DBC at this point. 50MB vs. 100MB for a max probably won't make much difference.
See how low you can get your OS RAM usage before you start worrying about Oracle.
Even for a test/sandbox system, especially with Oracle 10G, 1GB RAM is really small. I wouldn't do less than 4GB RAM myself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 02:54 AM
тАО05-17-2007 02:54 AM
Re: oracle sga etc. and memory on new small system...
Have the oracle person reduce sga memory requirements.
You can free up buffer cache by lowering dbc_max_pct a few points. It is advisable to do both.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 03:29 AM
тАО05-17-2007 03:29 AM
Re: oracle sga etc. and memory on new small system...
> Memory is already nearly 100% used with no
> user activity occurring
This is good--you want Oracle to utilize nearly all available RAM for cache in the SGA.
> They recommend setting dbc_max_pct down
> from 10 to 5 and dbc_min_pct to a value of
> 2 to free up additional RAM on the server
> from the filesystem buffer cache.
'dbc_max_pct' doesn't really matter. 'dbc_min_pct' does, but even so, you're only talking a potential savings of 30MB or so.
> I know it would be best to buy more memory.
Absolutely. In fact, I'm not sure that configuration even meets the minimum requirements for 10g under HP-UX.
> But short of doing that, can anyone advise
> if the sga / pga sizes might need further
> adjustment?
Tune the shared pool, buffer cache, and redo log buffer sizes. Set 'java_pool_size=0' if you don't use Java. Disable unnecessary/excessive Oracle server processes (e.g. parallel servers, redo log archivers, etc.). Disable unnecessary OS daemons.
Also realize that 'pga_aggregate_target' is just that: a target. There's nothing to prevent the PGA from exceeding this setting as more sessions are established, in which case, with such little RAM, you will be in trouble.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2007 09:10 AM
тАО05-17-2007 09:10 AM
Re: oracle sga etc. and memory on new small system...
- John