- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Does RMAN backup prohibit a shutdown immediate com...
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
тАО02-10-2005 07:06 PM
тАО02-10-2005 07:06 PM
We are running an Oracle 8.1.7.4 database on a HP-UX 11.00 RP-7400.
I'm wondering if a RMAN backup prohibits a shutdown immediate on the database that's being backed up (target)?
I tried to do a shutdown immediate on our database, but the shutdown immediate didn't complete until 2 hours later. The only thing I know was running, was a RMAN backup of the database. The RMAN backup was a full backup with all archivelogs.
regards
Morten K
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2005 07:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2005 07:39 PM
тАО02-10-2005 07:39 PM
Re: Does RMAN backup prohibit a shutdown immediate command?
from my Oracle book:
"The database will not close at once - after Oracle performs some cleanup, the database will shut down. The session that were accessing the database are terminated gracefully and any resource in use are methodically freed up.The length of time to complete depends on the number of users on the database.Be patient."
So the short answer is no, RMAN does not prohibit but slows down a shutdown immediate.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2005 07:53 PM
тАО02-10-2005 07:53 PM
Re: Does RMAN backup prohibit a shutdown immediate command?
No, RMAN does not prohibit but slows down a shutdown immediate.
Immediate database shutdown proceeds with the following conditions:
Any uncommitted transactions are rolled back. (If long uncommitted transactions exist, this method of shutdown might not complete quickly, despite its name).
Oracle does not wait for users currently connected to the database to disconnect; Oracle implicitly rolls back active transactions and disconnects all connected users.
It depends upon what the sessions are doing. If these are sessions with active, long running queries, it may take a very long time for the session to be terminated by the shutdown. While RMAN backup was runing and you issued a shutdown immediate. The shutdown immediate will be completed after the backup process.
Indira A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2005 09:01 PM
тАО02-10-2005 09:01 PM
Re: Does RMAN backup prohibit a shutdown immediate command?
Shutdown immediate is a clean shutdown. It simply kicks off active transactions before doing a clean shutdown and leaves the database in the same closed state as shutdown
normal does.
Here, Your RMAN is like a long running transaction a really long running transaction that would take a while to rollback.
As such your shutdown immediate will have to wait for the RMAN to compelete...
regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-10-2005 09:01 PM
тАО02-10-2005 09:01 PM
Re: Does RMAN backup prohibit a shutdown immediate command?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-12-2005 03:39 AM
тАО02-12-2005 03:39 AM
Re: Does RMAN backup prohibit a shutdown immediate command?
To be safer, stop RMAN next time before attempting to shutdown the db. If there are any defunct processes, also kill them via the OS if necessary.
Regards,
Mel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-13-2005 11:32 PM
тАО02-13-2005 11:32 PM
Re: Does RMAN backup prohibit a shutdown immediate command?
If you must shutdown during a backup, kill the backup procedure first and check the tablespaces (select * from V$backup) to make sure that RMAN shutdown cleanly. If any are still in backup mode.
alter tablespace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2005 02:12 AM
тАО03-17-2005 02:12 AM
Re: Does RMAN backup prohibit a shutdown immediate command?
/M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-17-2005 06:06 AM
тАО03-17-2005 06:06 AM
Re: Does RMAN backup prohibit a shutdown immediate command?
Also, to note some earlier post - RMAN backup does not put your tablespaces in a backup state like the old style backup method, so you don't have the worry of a failed hot backup leaving your database in a strange state like in the days of yore.
All that being said - this is how we've made it work with DataProtector - but it would seem to me to be the same challenge with other backup products/methods.