Rstore Database Oracle

Oracle backup/restore with TSM is much like backup/restore with a regular tape device.

You use Oracle's RMAN as you normally would, you just need to set up a data channel to TSM which acts like a tape device. Look at the script that does the backup to see how it's done in your implementation.

Should be something like

Code:
[I]           allocate channel t1 type 'sbt_tape' parms 'ENV=(TDPO_OPTFILE=c:\TSM\tdpo.opt)';
[/I][I]           restore database;[/I]
[I]           recover database;[/I]
[I]           alter database open;[/I]

Restoring an Oracle DB should be done by an Oracle DB admin... it's so trivial for someone who's never done it before. It depends whether you're restoring the database to latest state or to a point-in-time. Also whether you have any recovery logs left on client system or not.
 
Back
Top