- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE...
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
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
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
тАО07-18-2001 11:09 AM
тАО07-18-2001 11:09 AM
Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
Thanks in advance,
Ivana
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2001 12:15 PM
тАО07-18-2001 12:15 PM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
The only patch I can remember that would definitely hang Oracle on 10.20 unless it is present is PHKL_16751. It's probably been superceded by now. I remember that it would hang dbwriter on HFS filesystems. It any event, this patch fixed so many problems that it should be installed.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-23-2001 12:08 AM
тАО07-23-2001 12:08 AM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
I see from Oracle Metalink that this bug occured when the database(dbstart) is started by Omniback, and not when started manually. Is this the case with your problem as well?
Then maybe Omniback is to blame. I don't know if there are pathes for this problem though.
Andreas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2001 12:33 AM
тАО07-24-2001 12:33 AM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2001 12:40 AM
тАО07-24-2001 12:40 AM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
but if you use more than one DB_WR, reduce it to one.
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2001 12:49 AM
тАО07-24-2001 12:49 AM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
Ivana
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2001 12:51 AM
тАО07-24-2001 12:51 AM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
Is it possible, that your logfiles are too small ? Are you running archivelogmode with offline redo log files ?
If yes, it is possible, that the logwriter is busy writing several log writing requests.
As long as the contents of the online log is not written, the file will still be active.
Bring the database to singe user mode ( mount exclusive ) and enhance the log files.
This is just an idea.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2001 02:33 AM
тАО07-24-2001 02:33 AM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
we use 16 logs each 262MB big. Is it big enough? We don't use database in archive log mode.
Regards,
Ivana Rybakova
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2001 04:49 AM
тАО07-24-2001 04:49 AM
Re: Oracle DATABASE HANGS CHECKPOINT DOES NOT COMPLETE ALL LOGS ACTIVE 1 CURRENT
I found this at Metalink:
---
The way to resolve incomplete checkpoints is through tuning checkpoints and
logs:
1) Give the checkpoint process more time to cycle through the logs
- add more redo log groups
- increase the size of the redo logs
2) Reduce the frequency of checkpoints
- increase LOG_CHECKPOINT_INTERVAL
- increase size of online redo logs
3) Improve the efficiency of checkpoints enabling the CKPT process with CHECKPOINT_PROCESS=TRUE
4) Set LOG_CHECKPOINT_TIMEOUT = 0. This disables the checkpointing based on
time interval.
5) Another means of solving this error is for DBWR to quickly write the dirty
buffers on disk. The parameter linked to this task is:
DB_BLOCK_CHECKPOINT_BATCH.
DB_BLOCK_CHECKPOINT_BATCH specifies the number of blocks which are dedicated
inside the batch size for writing checkpoints. When you want to accelerate
the checkpoints, it is necessary to increase this value.
---
I think option 1 is OK in your case as you have many large logs, but you might have to look into the frequency of checkpoints, which should not happen to often.
You should have a low number of log switches per hour (just a couple) and preferably the same (low) number of ckpt (as ckpt occures at log_switch)
Andreas