Applies to Oracle Database (9i ~ 12c) - RMAN (Recovery Manager).
To check RMAN Configuration:
1. Current RMAN Configuration :
RMAN> show all;
2. To Test RMAN:
Test 1 - Backup to disk:
$ rman target / log=rman_disk.log
RMAN> set echo on;
RMAN> show all;
RMAN> run
{
allocate channel d1 device type disk;
backup datafile 1 ;
}
Look for rman_disk.log file for the results.
Test 2 - Backup to tape:
$ rman target / log=rman_tape.log
RMAN> set echo on;
RMAN> show all;
RMAN> backup datafile 1 ;
Look for rman_tape.log file for the results.
3. Execute the following RMAN Command to make sure RMAN checks what physical files exist or not :
$ rman target / log=crosscheck_out.log
RMAN> set echo on;
RMAN> crosscheck backup ;
4. If you are using rman script for backup, try running that script with log option.
$ rman target / log=crosscheck_out.log
RMAN> set echo on;
RMAN> <execute your RMAN Script>
Look for crosscheck_out.log file for the results.
Reference / Read More:
1. Oracle Database Backup and Recovery Reference
11g Release 2 (11.2)
E10643-07
http://docs.oracle.com/cd/E11882_01/backup.112/e10643/toc.htm
2. Oracle Database Backup and Recovery User's Guide
11g Release 2 (11.2)
E10642-06
http://docs.oracle.com/cd/E11882_01/backup.112/e10642/toc.htm
3. Oracle Database Recovery Manager Reference
10g Release 1 (10.1)
Part Number B10770-01
Section: ALLOCATE CHANNEL
http://docs.oracle.com/cd/B12037_01/server.101/b10770/rcmsynta4.htm
To check RMAN Configuration:
1. Current RMAN Configuration :
RMAN> show all;
2. To Test RMAN:
Test 1 - Backup to disk:
$ rman target / log=rman_disk.log
RMAN> set echo on;
RMAN> show all;
RMAN> run
{
allocate channel d1 device type disk;
backup datafile 1 ;
}
Look for rman_disk.log file for the results.
Test 2 - Backup to tape:
$ rman target / log=rman_tape.log
RMAN> set echo on;
RMAN> show all;
RMAN> backup datafile 1 ;
Look for rman_tape.log file for the results.
3. Execute the following RMAN Command to make sure RMAN checks what physical files exist or not :
$ rman target / log=crosscheck_out.log
RMAN> set echo on;
RMAN> crosscheck backup ;
4. If you are using rman script for backup, try running that script with log option.
$ rman target / log=crosscheck_out.log
RMAN> set echo on;
RMAN> <execute your RMAN Script>
Look for crosscheck_out.log file for the results.
Reference / Read More:
1. Oracle Database Backup and Recovery Reference
11g Release 2 (11.2)
E10643-07
http://docs.oracle.com/cd/E11882_01/backup.112/e10643/toc.htm
2. Oracle Database Backup and Recovery User's Guide
11g Release 2 (11.2)
E10642-06
http://docs.oracle.com/cd/E11882_01/backup.112/e10642/toc.htm
3. Oracle Database Recovery Manager Reference
10g Release 1 (10.1)
Part Number B10770-01
Section: ALLOCATE CHANNEL
http://docs.oracle.com/cd/B12037_01/server.101/b10770/rcmsynta4.htm
No comments:
Post a Comment