- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: oracle 9i RMAN restoration question
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
тАО12-09-2004 02:17 AM
тАО12-09-2004 02:17 AM
I created a table and input some customers informations (abt 10 records) into this table and backup it via Netbackup successfully.
I backup using the tempplate created by Netbackup, it backup the archive logs and controlfile too.
Then i deleted the 10 records away using sqlplus command and tried a restore via Netbackup, the Netbackup status reflected the restoration was successful but when i checked, all the 10 records did not restored...
This is how i wrote the restore script....
run{
connect target ...bla bla bla
connect catlago ...bla bla bla
allocate channel ....bla bla bla
send 'NB_ORA_SERV...'bla bla bla
restore database;
recover database;
release channle t1;
}
Any idea why???
thnaks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2004 02:41 AM
тАО12-09-2004 02:41 AM
SolutionIf you have the need to recover data from one table and not roll your entire database back to a point in time before a delete or corruption then you need to follow the procedure for Tablespace Point In Time Recovery documented in Metalink note 109979.1.
Patti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2004 03:05 AM
тАО12-09-2004 03:05 AM
Re: oracle 9i RMAN restoration question
Chris.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2004 03:15 PM
тАО12-09-2004 03:15 PM
Re: oracle 9i RMAN restoration question
the only way out is to do a point in time recovery.
you may wish to also have a look at the metalink note: 94114.1 (Backup and Recovery Scenarios)
if you need any further help, please do let us know...
regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2004 04:52 PM
тАО12-09-2004 04:52 PM
Re: oracle 9i RMAN restoration question
Do you know of any good Oracle material one could peruse that shows one how to implement an RMAN Backup/Recovery strategy? With all due respect to Oracle Corp., but the documentation is long winded.
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-09-2004 06:57 PM
тАО12-09-2004 06:57 PM
Re: oracle 9i RMAN restoration question
i still find the Oracle "Recovery Manager User├в s Guide and Reference" the best documentation available.
Metalink also provides a lot of interesting documents. The latest is used is the "73974.1 - RMAN: Restoring an RMAN backup to another note"
Backup and recovery is something very serious! You can't afford to take any chances and MUST make sure that you test your recovery. If possible, you should regularly practice your recovery.
My advise is to work with the RMAN experts found at Oracle Metalink. They have helped me several times and are very professional.
regards
Yogee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-10-2004 05:23 AM
тАО12-10-2004 05:23 AM
Re: oracle 9i RMAN restoration question
I have found very convenient to restore data using FLASHBACK QUERIES when it is a few records or a given table and you don├в t have an export dump file. This is easier than restoring with RMAN. The limitation is that the transaction must be recent enough to still be in the UNDO areas (rollback segments). If you try to restore a transaction that occurred 24 hours ago most likely you will not be able. The older the transaction the less chances to recover with FLASHBACK QUERY. This feature is available in Oracle 9i.
A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-10-2004 08:01 PM
тАО12-10-2004 08:01 PM
Re: oracle 9i RMAN restoration question
Let me get this right...
RMAN can only restore tablespace, datafile and database, it can't do table or record restoration...
So in order for me to get back the 10 records which i created in the table, i must restore the entire tablespace or even database and do a point in time restoration before i drop the records... is that right???
:)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-10-2004 11:44 PM
тАО12-10-2004 11:44 PM
Re: oracle 9i RMAN restoration question
BTW, do not consider an export to be any kind of backup.
You can not recover forward from an import.
Most likely an export will be inconsistent, if taken while the DB is up and running.
You can use an export only to retrive specific data, that might need postprocessing.
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2004 05:42 AM
тАО12-12-2004 05:42 AM
Re: oracle 9i RMAN restoration question
Thanks,
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-12-2004 07:10 PM
тАО12-12-2004 07:10 PM
Re: oracle 9i RMAN restoration question
yes.
Basically, the TSPITR starts a mini instance (aux instance it calls it) and does a PITR of
the affected tablespace. Then, "Recover" the 10 records. Finally, trash this mini instance.
Should not be that complicated...
regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-13-2004 02:04 AM
тАО12-13-2004 02:04 AM
Re: oracle 9i RMAN restoration question
I managed to restore all the 10 rows i created using point in time recovery.
Thanks for being so helpful.
My next challenge will be restoring from a Oracle RAC environment to a standalone database environment.
Thanks
patrick