- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- oracle shutdown instead of halt
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
тАО09-09-2002 11:04 AM
тАО09-09-2002 11:04 AM
as of now, am planning to change 'shutdown abort' commands to 'shutdown immeidate' in 'oracle_abort_cmds' function and may be increase 'TIME_OUT' from 30 secs to 300sec and set service_halt_timeout to 360sec. Is this a right start ? also, since there will multiple databases on the same package i'll be calling these /etc/cmcluster/pkg1/
thanks!
stan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 11:18 AM
тАО09-09-2002 11:18 AM
Re: oracle shutdown instead of halt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 02:55 PM
тАО09-09-2002 02:55 PM
Re: oracle shutdown instead of halt
thanks!
stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 03:18 PM
тАО09-09-2002 03:18 PM
Re: oracle shutdown instead of halt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 04:06 PM
тАО09-09-2002 04:06 PM
Re: oracle shutdown instead of halt
I really worry about infrequent package switches rather than frequent package halts which happens normally in a scheduled maintenance window where you have control in doing things like creating 'NoMonitor_
there are cases where shutdown immediate could hang or take mins...simple scenario is, if shutdown immeidate has to 'rollback huge transactions' for 10's of user connections then definetly shutdown immediate *is* going to take mins.
stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 04:15 PM
тАО09-09-2002 04:15 PM
Re: oracle shutdown instead of halt
How about do a shutdown abort first , the nbring up the database and then do shutdown immediate .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 04:57 PM
тАО09-09-2002 04:57 PM
Re: oracle shutdown instead of halt
my whole point is not issue 'shutdown abort' at first.
stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 05:38 PM
тАО09-09-2002 05:38 PM
Re: oracle shutdown instead of halt
We use 'shutdown immediate' in the scripts that halt our Oracle database instances in our packages. The only time we would do a 'shutdown abort' is if one of our Oracle DBAs has to do it manually to get an instance down.
As for calling the other database shutdown scripts in background mode, what does that mean?
I agree with Clay. You should code your shutdown scripts to bring things down cleanly and safely, as you will run these when you are stopping things for maintenance, etc. If your system crashes, the database won't get shutdown anyway, so it doesn't much matter. Oracle is an amazingly tough database and I've seen it survive some brutal system crashes and come right back up without any major complaints.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 05:51 PM
тАО09-09-2002 05:51 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 06:58 PM
тАО09-09-2002 06:58 PM
Re: oracle shutdown instead of halt
stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-09-2002 10:27 PM
тАО09-09-2002 10:27 PM
Re: oracle shutdown instead of halt
"Abort" is used because "immediate" and "normal" will wait for all users to log off and they are not deterministic.
So do like suggested :
shutdown abort
startup mount
alter database open;
shutdown immediate
Maybe this will help you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2006 03:46 AM
тАО02-10-2006 03:46 AM
Re: oracle shutdown instead of halt
To avoid from control script execute "fuser -k" and kill oracle process after try "shutdown immediate" without finish sucessfully, I made this changes:
immediate)
shutdown_oracle immediate
check_status=$?
if [ $check_status -ne 0 ] ; then
shutdown_oracle abort
check_status=$?
fi
return $check_status
;;