Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> rman problem
Hi all
I have RMAN restore question.
How to restore from exact backup file?
For example I run script
RUN { ALLOCATE CHANNEL ch1 TYPE DISK FORMAT 'C:\oracle\kopia\%d_DB_%u_%s_%p';
BACKUP DATABASE plus archivelog;
RELEASE CHANNEL ch1;
}
EXIT; It creates backup copy file:
'C:\oracle\kopia\ORCL_DB_04HHIHCD_4_1'
How to restore exactly from that backup copy not from last one?
I try:
run {
allocate channel d1 type disk;
from 'C:\oracle\kopia\ORCL_DB_04HHIHCD_4_1';
restore database validate;
RELEASE CHANNEL d1;
}
But it doesn't work.
Thanks for help
t. Received on Thu Apr 27 2006 - 10:00:31 CDT