I have been doing some reading and try to learn RMAN. Any, I did create catalog and register the database I want to backup to RMAN. So I used RMAN to connect to the target database and everything is ok. When I issue the command: BACKUP DATABASE.
and below is what I have when I typed:RMAN> show all
2> ;
RMAN configuration parameters are:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
CONFIGURE DEVICE TYPE DISK PARALLELISM 1; # default
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
CONFIGURE MAXSETSIZE TO UNLIMITED; # default
CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'C:\ORACLE\ORA920\DATABASE\SNCFTEST.O
RA'; # default
RMAN configuration has no stored or default parameters
try this code which will send everything to 'C:\ORACLE\ORA920\DATABASE\'
run this in RMAN after you connect to target and catalog:
Code:
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'C:\ORACLE\ORA920\DATABASE\control_%F';
CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT 'C:\ORACLE\ORA920\DATABASE\backup_%U';
CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT 'C:\ORACLE\ORA920\DATABASE\backup_%U';
CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'C:\ORACLE\ORA920\DATABASE\snap_controlf';
again I follow your adivses and run the backup database again, and it created the backup file again. but when I go to $ORACLE_HOME\database\, I can't find any file under that name and matter of fact I did a search on my entire computer, I still couldn't find anything.
Bookmarks