Key command options used for backup in RMAN (Recovery Manager) as FOR RECOVER OF COPY, Format

Some of the key command options used for backup in RMAN (Recovery Manager):

  1. BACKUP: This is the primary command to create backups. It can be used to back up the entire database, specific tablespaces, datafiles, control files, and archived redo logs.
  2. INCREMENTAL LEVEL 0: Creates a full backup of the database or specified objects. This is the baseline for subsequent incremental backups.
  3. INCREMENTAL LEVEL 1: Backs up only the blocks that have changed since the last level 0 or level 1 backup.
  4. DATABASE: Specifies that the entire database should be backed up.
  5. TABLESPACE: Backs up specific tablespaces.
  6. DATAFILE: Backs up specific datafiles.
  7. ARCHIVELOG: Backs up archived redo logs, which are essential for recovery.
  8. PLUS ARCHIVELOG: Backs up the database along with all archived redo logs.
  9. FORMAT: Specifies the location and naming convention for the backup files.
  10. TAG: Assigns a tag to the backup for easy identification.
  11. KEEP: Specifies that the backup should be retained for a specified period, regardless of the retention policy.
  12. VALIDATE: Checks the integrity of the backup without actually creating it.
  13. CHECK LOGICAL: Verifies the logical consistency of the backup.
  14. MAXPIECESIZE: Limits the size of backup pieces.
  15. COMPRESSED: Creates a compressed backup to save space.
  16. SECTION SIZE: Divides the backup into sections of a specified size, useful for large datafiles.
  17. FOR RECOVER OF COPY: Applies incremental backups to an existing image copy backup.
  18. NOREDO: Backs up datafiles without including redo data.
  19. AS COPY: Creates image copies of the datafiles.
  20. AS BACKUPSET: Creates backup sets, which are RMAN-specific formats.

Leave a Reply