- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP Business copy and Oracle backup
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
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
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
тАО05-22-2003 08:29 PM
тАО05-22-2003 08:29 PM
HP Business copy and Oracle backup
We're going to use HP Bussines Copy on VA7410 disk system for Oracle backup. I'm very concerned about possibility of restore from such backup. It'll a mission critical DB and we can not afford close DB for backup. But it'll look like a DB after "shutdowm abort" command. IFAIK Oracle strognly recomends do not shutdown DB with "abort" option.
What can you say ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2003 10:34 PM
тАО05-22-2003 10:34 PM
Re: HP Business copy and Oracle backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2003 10:43 PM
тАО05-22-2003 10:43 PM
Re: HP Business copy and Oracle backup
We also have mission critical DB and to close for backup is impossible.So Oracle have a Online backup.Meant that no need to shutdown database but still can do backup.This is called Online backup.But you database must be in archivelog mode to do Online backup.That's the requirement.
Or if your database is mirrored and user allowed to shutdown the database for 10 minutes.What you can do is :
1) shutdown the database.
2) split mirror
3) mount mirror copy
4) backup database.
uhm!!! if my answer is *nonsense* I guest I'm really sleepy.
mB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2003 12:02 AM
тАО05-25-2003 12:02 AM
Re: HP Business copy and Oracle backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-25-2003 04:11 PM
тАО05-25-2003 04:11 PM
Re: HP Business copy and Oracle backup
You are right.The online backup is per tablespace.Which are :
1) alter tablespace ... begin backup.
2) After you backup the datafile using O/S utilities (fbackup or tar ..) , then do
alter tablespace ...end backup.
You question :
And I couldn't userstood what will I have to do with archived logs
Answer: well before you do alter tablespace...begin backup,your database MUST be in archivelog mode.
You can check using :
select log_mode from v$database;
Log as dba.
if you database not running archived log and you issue as below,you will hit error:
SQL> alter tablespace users begin backup;
alter tablespace users begin backup
*
ERROR at line 1:
ORA-01123: cannot start online backup; media recovery not enabled
Your Question:
Is it possible that lgwr process is writing an archived log when split do ?
Answer:
Well when you do a split disk,now you have two copies of database.So you bring up the database which reside on primary disk and backup using the mirror disk.(Remember you need to mount the mirror disk).lgwr are still running as normal writing to archived log because database which reside in primary disk are running.
But you cannot use this option as your database are need to run at all time.
hope this help.
regards
mB