- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- shutdown abort risk
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
тАО06-26-2002 03:36 AM
тАО06-26-2002 03:36 AM
I'm facing a problem with a process hanging on an Orcle 8.01 db: I killed the process from server command line but in V$SESSION this is still living even if marked for kill. This is since 2 days ago and it seems not to stop; the problem is that such process is consuming db performance, resulting in a slowing down of the activities.
I try the alter system kill session command, but I have there another problem:
in the V$SESSION table, the process is reported having its SID but the SESSION number is changing countinuously and it is not possible to pass this value to the above command.
I tried as a last resource the SHUTDOWN IMMEDIATE but it hangs: after nearby 6 hours I stopped it because necessity of dbase availability.
The only idea I have is to try shutdown abort but my scare is about the event of no remounting of the database: does anyone have an insights about this?
thanks already!!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2002 04:45 AM
тАО06-26-2002 04:45 AM
SolutionIt is also possible that a shutdown immediate will leave shared memory segments allocated. You may need to identify those and remove them manually via ipcrm.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2002 05:02 AM
тАО06-26-2002 05:02 AM
Re: shutdown abort risk
I have used shutdown abort several times without problems. Somtimes a Oracle server has stopped due to power failure (with no Oracle shutdown a all) and started again witout problem. It seems as the risk is not so big but Oracle dont recommend using this in other then emergency cases.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2002 05:27 AM
тАО06-26-2002 05:27 AM
Re: shutdown abort risk
It is also possible that a shutdown ABORT will leave shared memory segments allocated. You may need to identify those and remove them manually via ipcrm.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2002 05:50 AM - last edited on тАО06-24-2021 06:46 AM by Ramya_Heera
тАО06-26-2002 05:50 AM - last edited on тАО06-24-2021 06:46 AM by Ramya_Heera
Re: shutdown abort risk
Hello,
When you do a
shutdown end
1.The uncommited transactions are not rolled back.
2.The next startup will require some instance recovery i.e
The SCN is not synchronized between the control and the datafiles.
This instance recovery will be taken care by Oracle itself.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2002 12:35 PM - last edited on тАО06-24-2021 06:46 AM by Ramya_Heera
тАО06-26-2002 12:35 PM - last edited on тАО06-24-2021 06:46 AM by Ramya_Heera
Re: shutdown abort risk
Performing a 'shutdown end' is not inherantly dangerous.
I have seen this situation before. What I have done in the past, is to 'alter system enable restricted session' for a short period, and kill the session. It should stop it from hopping serial numbers.
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2002 12:55 PM - last edited on тАО06-24-2021 06:46 AM by Ramya_Heera
тАО06-26-2002 12:55 PM - last edited on тАО06-24-2021 06:46 AM by Ramya_Heera
Re: shutdown abort risk
If you *do* issue a shutdown end , always immediately follow it with:
startup restrict ;
shutdown normal ;
This will give the database a chance to carry out full instance recovery without any users getting access. In the case of large data warehouses this could take a while to roll back uncommitted transactions (how long is a piece of string!)
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-26-2002 08:34 PM
тАО06-26-2002 08:34 PM
Re: shutdown abort risk
The serial# is changing because PMON process is doing the process recovery.
If your DB is 8.0.x , then you can increase the value of cleanup_rollback_entries init.ora parameter , which will speed up the transaction recovery by SMON at next startup after shutodwn abort.
Thanks
AR