RMAN is trying to read from a strange location...?
Hi!
Im trying to restore a spfile to pfile.
The RMAN backup is written to disk:
The logfile looks a little strange. RMAN writes to a strange location: \ORACLE\ORA10.2\DATABASE\C-2179021406-20110804-00?? In the middle of the log.
Im trying to restore a spfile to pfile.
The RMAN backup is written to disk:
Code: [Select all] [Show/ hide]
connect catalog rman11cv/password@metarep connect target sys/password@DATABASE run { ALLOCATE CHANNEL disk1 DEVICE TYPE DISK FORMAT 'G:\BackupDB\%U'; backup AS COMPRESSED BACKUPSET incremental level = 0 filesperset = 10 database include current controlfile spfile ; } run { ALLOCATE CHANNEL disk1 DEVICE TYPE DISK FORMAT 'G:\BackupDB\%U'; sql "alter system archive log current"; backup AS COMPRESSED BACKUPSET filesperset = 5 (archivelog all delete input ); backup current controlfile spfile ; } exit;
The logfile looks a little strange. RMAN writes to a strange location: \ORACLE\ORA10.2\DATABASE\C-2179021406-20110804-00?? In the middle of the log.
0