- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: hpux question
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
04-01-2010 10:16 AM
04-01-2010 10:16 AM
hpux question
just to see if you have encountered this before -
on hpux box - oracle and app ruuning . users get performance issues and oracle log shows deadlocked detected..
any idea?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2010 10:25 AM
04-01-2010 10:25 AM
Re: hpux question
deadlock on Oracle can occurs if multiple statements try to update/delete the same datas at the same time and are waiting for eachothers to resolve before unlocking the datas.
Check your queries or the jobs running at this time and see which ones are conflicting
regards
MC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2010 10:27 AM
04-01-2010 10:27 AM
Re: hpux question
Your DBAs need to look and see what is happening in the database. There are likely 2, or more, that have each other locked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2010 10:30 AM
04-01-2010 10:30 AM
Re: hpux question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2010 10:38 AM
04-01-2010 10:38 AM
Re: hpux question
is there a possibility less system resource(memory , swap) cause this deadock?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2010 10:46 AM
04-01-2010 10:46 AM
Re: hpux question
As Patrick notes, this is likely a database problem and then likely an application problem.
Deadlocks occur when two processes don't observed a predicate, canonical locking order.
For example, consider the case if two processes (#1 and #2) want to lock resources A and B. Imagine that the locking order should be (the canonical order) 'A' then 'B', but process-1 locks resource-B first. Process-2 can lock 'A' but cannot lock 'B' as process-1 holds the lock. Furthermore, process-1 can't get lock 'A' because process-2 has it. This is the deadlock.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2010 10:47 AM
04-01-2010 10:47 AM
Re: hpux question
A remote possibility would be that a lack of resources causing one process to run slow. If another process then runs that tries to access/update the EXACT same data, then you could have a deadlock.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2010 10:50 AM
04-01-2010 10:50 AM
Re: hpux question
http://www.oracle.com/technology/documentation/berkeley-db/db/api_reference/C/db_deadlock.html
Deadlocks are a process error. The only processes in HP-UX are service daemons typically, certainly not the kind of memory or I/O or cpu resource hogs shown by application processes.
I mean, when was the last time you ever heard of an O/S memory leak? Never? Well, same for O/S deadlocks. If the GD O/S can't run, how do you expect the applications to run?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2010 06:51 PM
04-03-2010 06:51 PM
Re: hpux question
BR,
Kapil+