HOW TO CONFIGURE
RMAN:
1.
Start RMAN from the command line:
E:\app\Administrator\product\11.2.0\dbhome_1\BIN>rman target /
Recovery Manager: Release 11.2.0.3.0 - Production on Sat Jan 25 16:11:39 2014
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: ASM (DBID=1255844286)
RMAN>
Recovery Manager: Release 11.2.0.3.0 - Production on Sat Jan 25 16:11:39 2014
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: ASM (DBID=1255844286)
RMAN>
2. Display your
RMAN configuration (yours may look different than our output—
that’s okay):
RMAN> show all;
RMAN configuration parameters for
database with db_unique_name ORCL are:
CONFIGURE RETENTION POLICY TO
REDUNDANCY 1;
CONFIGURE BACKUP OPTIMIZATION ON;
CONFIGURE DEFAULT DEVICE TYPE TO
DISK; # default
CONFIGURE CONTROLFILE AUTOBACKUP
OFF;
CONFIGURE CONTROLFILE AUTOBACKUP
FORMAT FOR DEVICE
TYPE DISK TO ‘%F’; # default
CONFIGURE DEVICE TYPE DISK
PARALLELISM 1 BACKUP
TYPE TO BACKUPSET; # 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 ENCRYPTION FOR DATABASE
OFF;
CONFIGURE ENCRYPTION ALGORITHM ‘AES128’;
CONFIGURE COMPRESSION ALGORITHM ‘zlib’;
CONFIGURE ARCHIVELOG DELETION
POLICY TO NONE; # default
CONFIGURE SNAPSHOT CONTROLFILE
NAME TO ‘E:\app\Administrator\product\11.2.0\dbhome_1\DATABASE\SNCFORCL.ORA’; # default
3. Configure the
retention policy to redundancy of 2:
RMAN> CONFIGURE RETENTION
POLICY TO REDUNDANCY 2;
old RMAN configuration
parameters:
CONFIGURE RETENTION POLICY TO
REDUNDANCY 1;
new RMAN configuration
parameters:
CONFIGURE RETENTION POLICY TO
REDUNDANCY 2;
new RMAN configuration parameters
are successfully stored
4. Configure
control-file autobackups on:
RMAN> CONFIGURE CONTROLFILE
AUTOBACKUP on;
old RMAN configuration
parameters:
CONFIGURE CONTROLFILE AUTOBACKUP
OFF;
new RMAN configuration parameters:
CONFIGURE CONTROLFILE AUTOBACKUP
ON;
new RMAN configuration parameters
are successfully stored
5. Configure for
compressed backup sets:
RMAN> CONFIGURE DEVICE TYPE
DISK PARALLELISM 1 BACKUP
TYPE TO COMPRESSED BACKUPSET;
new RMAN configuration
parameters:
CONFIGURE DEVICE TYPE DISK PARALLELISM
1 BACKUP TYPE
TO COMPRESSED BACKUPSET;
new RMAN configuration parameters
are successfully stored
6. Create a
directory to hold the snapshot control file (you will want to use your own directory
paths, of course):
RMAN> host “mkdir \rman”;
host command complete
RMAN> host “mkdir
\rman\snapshot”;
host command complete
7. Configure RMAN
so the snapshot control file will be created in the new directory:
RMAN> CONFIGURE SNAPSHOT
CONTROLFILE NAME TO ‘E:\rman\snapshot’;
new RMAN configuration parameters:
CONFIGURE SNAPSHOT CONTROLFILE
NAME TO ‘E:\rman\snapshot’;
new RMAN configuration parameters
are successfully stored
8. Exit RMAN:
RMAN> exit
Recovery Manager complete.
No comments:
Post a Comment