You are on page 1of 1

Once restore complete:

Test:
1.
rman target /

BACKUP VALIDATE CHECK LOGICAL TABLESPACE UET_COMP;

sqlplus / as sysdba
select * from V$DATABASE_BLOCK_CORRUPTION;

rman

SPOOL LOG TO 'pods_t131_block_recover_2.log';

connect target /
connect catalog rman/Rman11r3y@prman

run {
���� allocate channel t1 type 'sbt_tape';
���� allocate channel t2 type 'sbt_tape';
���� allocate channel t3 type 'sbt_tape';
���� allocate channel t4 type 'sbt_tape';
���� allocate channel t5 type 'sbt_tape';
���� allocate channel t6 type 'sbt_tape';

���� send 'NB_ORA_POLICY=EXADATA_DATA_Prod,NB_ORA_SCHED=Full_Application-Backup';

���� blockrecover corruption list;


����
�����release channel t1;
���� release channel t2;
���� release channel t3;
���� release channel t4;
���� release channel t5;
���� release channel t6;
��� }

SPOOL LOG OFF;

You might also like