Database in ARCHIVELOG Mode

To check if the database is in ARCHIVELOG mode:
sql
Copy code
SQL> SELECT LOG_MODE FROM V$DATABASE;

OR

SQL> ARCHIVE LOG LIST; 


To enable ARCHIVELOG mode (requires database restart):
sql
Copy code
SHUTDOWN IMMEDIATE;

STARTUP MOUNT;

ALTER DATABASE ARCHIVELOG;

ALTER DATABASE OPEN;


2. Sufficient Disk Space


In RMAN, you can use the SHOW ALL command to display the current configuration settings for RMAN parameters. This command provides an overview of all RMAN configuration settings, including retention policies, backup destinations, compression, encryption, and other important options.

Here's how to display the current configuration for all RMAN parameters:

RMAN SHOW ALL Command

Command:
sql
Copy code
RMAN> SHOW ALL;


The output will show settings such as:

2. Details of Key RMAN Parameters

Here’s a breakdown of important RMAN parameters and what they control:

a. Retention Policy

Command to view current retention policy:
sql
Copy code
RMAN> SHOW RETENTION POLICY;


Command to configure retention policy:
sql
Copy code
RMAN> CONFIGURE RETENTION POLICY TO REDUNDANCY 2;

RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;


b. Backup Optimization

Command to view backup optimization setting:
sql
Copy code
RMAN> SHOW BACKUP OPTIMIZATION;

Command to configure backup optimization:
sql
Copy code
RMAN> CONFIGURE BACKUP OPTIMIZATION ON;


c. Default Device Type

Command to view default device type:
sql
Copy code
RMAN> SHOW DEFAULT DEVICE TYPE;

Command to configure the default device type:
sql
Copy code
RMAN> CONFIGURE DEFAULT DEVICE TYPE TO DISK;

d. Control File Autobackup

Command to view control file autobackup setting:
sql
Copy code
RMAN> SHOW CONTROLFILE AUTOBACKUP;

Command to configure control file autobackup:
sql
Copy code
RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;

e. Encryption Algorithm

Command to view encryption algorithm:
sql
Copy code
RMAN> SHOW ENCRYPTION ALGORITHM;

Command to configure encryption algorithm:
sql
Copy code
RMAN> CONFIGURE ENCRYPTION ALGORITHM 'AES256';

f. Compression Algorithm

Command to view compression algorithm:
sql
Copy code
RMAN> SHOW COMPRESSION ALGORITHM;

Command to configure compression algorithm:
sql
Copy code
RMAN> CONFIGURE COMPRESSION ALGORITHM 'BASIC';

g. Channel Configuration

Command to view channel configuration:
sql
Copy code
RMAN> SHOW CHANNEL DEVICE TYPE DISK;

Command to configure channels:
sql
Copy code
RMAN> CONFIGURE CHANNEL DEVICE TYPE DISK PARALLELISM 2;

RMAN> CONFIGURE CHANNEL DEVICE TYPE SBT PARALLELISM 4;

h. Snapshot Control File Location

Command to view snapshot control file location:
sql
Copy code
RMAN> SHOW SNAPSHOT CONTROLFILE NAME;

Command to configure snapshot control file location:
sql
Copy code
RMAN> CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/backup/snapshot.ctl';

i. Archived Redo Logs Deletion Policy

Command to view deletion policy for archived logs:
sql
Copy code
RMAN> SHOW ARCHIVELOG DELETION POLICY;

Command to configure deletion policy:
sql
Copy code
RMAN> CONFIGURE ARCHIVELOG DELETION POLICY TO BACKED UP 1 TIMES TO DISK;

j. Auxiliary Destination

Command to view auxiliary destination:
sql
Copy code
RMAN> SHOW AUXILIARY DESTINATION;

Command to configure auxiliary destination:
sql
Copy code
RMAN> CONFIGURE AUXILIARY DESTINATION TO '/u01/aux';

k. Automatic Backup of SPFILE

Command to view SPFILE autobackup setting:
sql
Copy code
RMAN> SHOW CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK;

3. Example of SHOW ALL Output

When you execute the SHOW ALL command, you’ll see an output like this:

text

Copy code

RMAN configuration parameters are:

CONFIGURE RETENTION POLICY TO REDUNDANCY 2;

CONFIGURE BACKUP OPTIMIZATION ON;

CONFIGURE DEFAULT DEVICE TYPE TO DISK;

CONFIGURE CONTROLFILE AUTOBACKUP ON;

CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/backup/cf_%F';

CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/backup/db_%U';

CONFIGURE MAXSETSIZE TO UNLIMITED;

CONFIGURE ENCRYPTION ALGORITHM 'AES256';

CONFIGURE COMPRESSION ALGORITHM 'BASIC';

CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;

CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;

CONFIGURE ARCHIVELOG DELETION POLICY TO NONE;

CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/dbs/snapcf_orcl.f';


4. Resetting Parameters to Default

Command to reset a specific parameter:
sql
Copy code
RMAN> CONFIGURE RETENTION POLICY CLEAR;

RMAN> CONFIGURE CHANNEL DEVICE TYPE DISK CLEAR;

RMAN> CONFIGURE <parameter_name> CLEAR; 


Using the SHOW ALL and CONFIGURE commands, you can control and monitor all aspects of RMAN backup configuration, tailoring it to meet your environment's needs.


RMAN BACKUP

RMAN (Recovery Manager) is an Oracle Database utility that allows you to back up, restore, and recover data files, control files, and archived redo logs. It's a key tool for managing Oracle database backups. Here’s an overview of RMAN backup concepts and processes:

1. Types of RMAN Backups

2. Basic RMAN Backup Commands

Full Database Backup:
sql
Copy code
RMAN> BACKUP DATABASE;

Incremental Level 0 Backup:
sql
Copy code
RMAN> BACKUP INCREMENTAL LEVEL 0 DATABASE;


Incremental Level 1 Backup (Differential):
sql
Copy code
RMAN> BACKUP INCREMENTAL LEVEL 1 DATABASE;

Incremental Level 1 Backup (Cumulative):
sql
Copy code
RMAN> BACKUP INCREMENTAL LEVEL 1 CUMULATIVE DATABASE;


Backup of Specific Tablespaces:
sql
Copy code
RMAN> BACKUP TABLESPACE users, system;


Backup of Control File and SPFILE:
sql
Copy code
RMAN> BACKUP CURRENT CONTROLFILE;

RMAN> BACKUP SPFILE;


Archivelog Backup:
sql
Copy code
RMAN> BACKUP ARCHIVELOG ALL;


3. Backup Locations

Disk: RMAN stores backups on a local or network disk.
sql
Copy code
RMAN> BACKUP DATABASE FORMAT '/backup/%d_db_%u_%s.bkp';


Tape (SBT): Backup to tape using a media manager.
sql
Copy code
RMAN> BACKUP DATABASE DEVICE TYPE sbt;

4. Backup Verification

RMAN allows you to verify backups without restoring them:

sql

Copy code

RMAN> RESTORE DATABASE VALIDATE;


5. Crosscheck and Delete Expired Backups

Crosscheck: Verifies the status of backups, ensuring that they are still available.
sql
Copy code
RMAN> CROSSCHECK BACKUP;

Delete Expired Backups: Deletes backups marked as expired.
sql
Copy code
RMAN> DELETE EXPIRED BACKUP;

6. Backup Optimization

Backup optimization avoids backing up unchanged files:

sql

Copy code

RMAN> CONFIGURE BACKUP OPTIMIZATION ON;


7. Encrypted Backups

RMAN supports encrypted backups for data security:

sql

Copy code

RMAN> BACKUP AS COMPRESSED BACKUPSET DATABASE ENCRYPTION;


8. Backup Compression

RMAN can compress backups to save storage:

sql

Copy code

RMAN> CONFIGURE COMPRESSION ALGORITHM 'BASIC';

RMAN> BACKUP AS COMPRESSED BACKUPSET DATABASE;

9. Monitoring and Reporting

List Backups:
sql
Copy code
RMAN> LIST BACKUP;

RMAN Backup Report:
sql
Copy code
RMAN> REPORT NEED BACKUP;

Best Practices for RMAN Backup:


Maintaining Oracle RMAN 


Maintaining Oracle RMAN (Recovery Manager) backups involves various tasks that ensure the health and reliability of your backups. Proper maintenance helps in optimizing backup performance, managing storage, and ensuring backups are available for recovery when needed. Here are key Oracle RMAN maintenance tasks:

1. Crosschecking Backups

Command:
sql
Copy code
RMAN> CROSSCHECK BACKUP;

RMAN> CROSSCHECK ARCHIVELOG ALL;


2. Deleting Obsolete Backups

Command:
sql
Copy code
RMAN> DELETE OBSOLETE;

3. Deleting Expired Backups

Command:
sql
Copy code
RMAN> DELETE EXPIRED BACKUP;

4. Cataloging Backups

Command:
sql
Copy code
RMAN> CATALOG START WITH '/path/to/backup/';

RMAN> CATALOG BACKUPPIECE '/path/to/backupfile.bkp';

5. Backup Validation

Command:
sql
Copy code
RMAN> VALIDATE BACKUPSET;

RMAN> VALIDATE DATABASE;

6. Backup Compression and Optimization

Enable Backup Compression:
sql
Copy code
RMAN> CONFIGURE COMPRESSION ALGORITHM 'BASIC';

7. Managing the Flash Recovery Area (FRA)

Command to show FRA usage:
sql
Copy code
SQL> SELECT * FROM V$RECOVERY_FILE_DEST;

Command to delete obsolete files in the FRA:
sql
Copy code
RMAN> DELETE OBSOLETE RECOVERY AREA;

8. Backup Retention Policy

Set retention by number of backups:
sql
Copy code
RMAN> CONFIGURE RETENTION POLICY TO REDUNDANCY 2;

Set retention by recovery window:
sql
Copy code
RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;

9. Monitoring and Reporting

List Backups:
sql
Copy code
RMAN> LIST BACKUP;

RMAN> LIST BACKUP SUMMARY;

Generate Reports (e.g., backups that need to be taken, datafiles at risk):
sql
Copy code
RMAN> REPORT NEED BACKUP;


About Differential Incremental Backups


Differential Incremental Backups 

Cumulative Incremental Backups