- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Oracle 8.1.7 upgrade increases 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
11-12-2001 09:14 AM
11-12-2001 09:14 AM
dbc_max_pct @ 10
dbc_min_pct @ 5
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2001 09:24 AM
11-12-2001 09:24 AM
SolutionBill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2001 09:24 AM
11-12-2001 09:24 AM
Re: Oracle 8.1.7 upgrade increases memory usage
10% of what? If you have more than, perhaps 300-400 MB of memory tied up in the buffer cache, you are probably wasting it. Let Oracle do its buffering. In fact, by allowing the Unix buffer cache to operate, too, you are doing *double* work.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2001 09:28 AM
11-12-2001 09:28 AM
Re: Oracle 8.1.7 upgrade increases memory usage
what is RAM size??
Is the 100% memory usage constant? or does it occur only at times? Is this construed as a problem by the user?
It is not always a bad thing to have 100% memory usage. Only if you notice
the system swapping heavily, then it can considered a problem.
More information would help.
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2001 10:02 AM
11-12-2001 10:02 AM
Re: Oracle 8.1.7 upgrade increases memory usage
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2001 10:08 AM
11-12-2001 10:08 AM
Re: Oracle 8.1.7 upgrade increases memory usage
STRMSGSZ 65535
maxdsiz 0X08000000
maxusers 256
nflocks 512
semmns 1000
semmni 500
shmmax 1073741824
Hope this help.s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2001 10:17 AM
11-12-2001 10:17 AM
Re: Oracle 8.1.7 upgrade increases memory usage
are you running one instance of db? has the dba increased the SGA size?
Also, tune the kernel params as suggested by others.
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2001 11:54 AM
11-12-2001 11:54 AM
Re: Oracle 8.1.7 upgrade increases memory usage
buy more RAM
find memory hogs to trim.
Buying RAM is easier, but perhaps not an option. Find which processes are using memory using the ps command:
NIX95= ps -e -o "user,pid,ppid,sz,vsz,comm" | sort -rn +4|more
Other things to look at:
400MB is not horrible as a buffer cache max, but if this is a dedicated oracle server and you are using the vxfs mount options recommended by oracle then I would cut it even further (perhaps in half, even).
It might be possible to trim the size of your oracle SGA(s), but make sure you consult with your DBA(s) about possible performance impact.