| Oracle® Database Backup and Recovery Reference 11g Release 2 (11.2) Part Number E10643-06 | 
 | 
| 
 | PDF · Mobi · ePub | 
Use the SHOW command to display the CONFIGURE commands used to set the current RMAN configuration for one or more databases. RMAN default configurations are suffixed with #default.
Execute this command only at the RMAN prompt. Either of the following conditions must be met:
RMAN must be connected to a target database, which must be mounted or open.
RMAN must be connected to a recovery catalog and SET DBID must have been run.


| Syntax Element | Description | 
|---|---|
| ALL | Shows all user-entered CONFIGUREcommands and default configurations. | 
| ARCHIVELOG BACKUP COPIES | Shows the currently configured degree of duplexing for archived redo log backups. | 
| ARCHIVELOG DELETION POLICY | Shows the CONFIGUREARCHIVELOG DELETION POLICYsetting. | 
| AUXNAME | Shows the CONFIGURE AUXNAMEsettings. | 
| BACKUP OPTIMIZATION | Shows the CONFIGURE BACKUP OPTIMIZATIONsettings:ONorOFF(default). | 
| [AUXILIARY] CHANNEL | Shows the CONFIGURE CHANNELsettings. You can specify a normal channel or anAUXILIARYchannel. | 
|    FOR DEVICE TYPE   deviceSpecifier | Specifies the device type of the channel. For example, SHOW CHANNEL FOR DEVICE TYPE DISKshows only channel settings for disk channels. | 
| COMPRESSION ALGORITHM | Shows the configured backup compression algorithm. | 
| CONTROLFILE AUTOBACKUP | Shows the CONFIGURE CONTROLFILE AUTOBACKUPsettings:ONorOFF. | 
|    FORMAT | Shows the format for the control file autobackup file for configured devices. | 
| DATAFILE BACKUP COPIES | Shows the CONFIGURE ... BACKUP COPIESsetting for data files:1,2,3, or4. | 
| DB_UNIQUE_NAME | Shows the DB_UNIQUE_NAMEvalues known to the recovery catalog. | 
| [DEFAULT] DEVICE TYPE | Shows the configured device types and parallelism settings. If DEFAULTis specified, thenSHOWdisplays the default device type and settings. | 
| ENCRYPTION | Shows currently configured encryption settings for the database or tablespaces within the database, when used with ALGORITHMorFOR {DATABASE | TABLESPACE}. | 
|    ALGORITHM | Shows the configured default algorithm to use for encryption when writing encrypted backup sets. Possible values are listed in V$RMAN_ENCRYPTION_ALGORITHMS. | 
|    FOR DATABASE | Shows current encryption settings for the database. | 
|    FOR TABLESPACE | Shows current encryption settings for each tablespace. | 
| EXCLUDE | Shows only the tablespaces that you specified as excluded. | 
| MAXSETSIZE | Shows the CONFIGURE MAXSETSIZEsettings. | 
| RETENTION POLICY | Shows the settings for CONFIGURE RETENTION POLICYfor the current target database. | 
| SNAPSHOT CONTROLFILE NAME | Shows the CONFIGURE SNAPSHOT CONTROLFILEsettings. | 
| forDbUniqueNameOption | Shows the configuration in the recovery catalog for a uniquely named database even when RMAN is not connected to this database as TARGET. You can specify a database withdb_unique_nameor useALLfor all uniquely named databases.The unique name for a database is the value of its  RMAN must be connected to a recovery catalog. RMAN must be connected to a mounted target database or you must identify the target database with  See Also:  | 
Example 3-47 Showing All Configurations for a Target Database
Assume that you want to know all persistent RMAN configurations for a target database. You start the RMAN client, CONNECT to the target database and recovery catalog, and run the SHOW command as follows (sample output included):
RMAN> SHOW ALL; RMAN configuration parameters for database with db_unique_name PROD1 are: CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default CONFIGURE BACKUP OPTIMIZATION OFF; # default CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default CONFIGURE CONTROLFILE AUTOBACKUP ON; CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/disk1/oracle/dbs/%F'; CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # defa ult CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default CONFIGURE DEVICE TYPE SBT_TAPE PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default CONFIGURE CHANNEL DEVICE TYPE 'SBT_TAPE' PARMS "SBT_LIBRARY=/usr/local/oracle/backup/lib/libobk.so"; CONFIGURE MAXSETSIZE TO UNLIMITED; # default CONFIGURE ENCRYPTION FOR DATABASE ON; CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/disk1/oracle/dbs/cf_snap .f'