4.12 formatSpec
Purpose
Use the formatSpec
subclause to specify a file name format or an Automatic Storage Management disk group for a backup piece or image copy. If you do not specify a value for the FORMAT
parameter, then RMAN either creates the backup in the fast recovery area if it is enabled, or in a platform-specific directory (for example, ?/dbs
on UNIX) if a fast recovery area is not enabled. In either case, RMAN uses the variable %U to name the backup.
Tip:
Oracle Database SQL Language Reference to learn how to create and name Automated Storage Manager disk groups
Usage Notes
Any name that is valid as a sequential file name on the platform is allowed, so long as each backup piece or copy has a unique name. If backing up to disk, then any valid disk file name is allowed, provided it is unique.
You cannot specify an Oracle Managed Files file name as the format for a backup. For example, if +DISK1/datafile/system.732.609791431
is an OMF file name, then you cannot specify this file name in the FORMAT
parameter.
Environment variables are not valid in the FORMAT
parameter.
The entire format_string
is processed in a port-specific manner by the target instance to derive the final backup piece name. The substitution variables listed in "Semantics" are available in FORMAT
strings to aid in generating unique file names. The formatting of this information varies by platform.
You can specify up to four FORMAT
strings. RMAN uses the second, third, and fourth values only when BACKUP
COPIES
, SET
BACKUP COPIES
, or CONFIGURE
... BACKUP COPIES
is in effect. When choosing the format for each backup piece, RMAN uses the first format value for copy 1, the second format value for copy 2, and so on. If the number of format values exceeds the number of copies, then the extra formats are not used. If the number of format values is less than the number of copies, then RMAN reuses the format values, starting with the first one.
Specify format_string
in any of the following places, listed in order of precedence:
-
The
backupSpec
clause -
The
BACKUP
command -
The
ALLOCATE CHANNEL
command -
The
CONFIGURE
CHANNEL
command
If it is specified in multiple places, then RMAN searches for the FORMAT
parameter in the order shown.
Semantics
formatSpec
The following table lists RMAN substitution variables that are valid in format strings.
Syntax Element | Description |
---|---|
|
Specifies the activation ID of the database. |
|
Specifies the file name stripped of directory paths. It is only valid for |
|
Specifies the copy number of the backup piece within a set of duplexed backup pieces. If you did not duplex a backup, then this variable is 1 for backup sets and 0 for proxy copies. If a command is enabled, then the variable shows the copy number. The maximum value for |
|
Specifies the name of the database (see Example 4-23). |
|
Specifies the current day of the month from the Gregorian calendar in format |
|
Specifies the archived log sequence number. |
|
Specifies the absolute file number (see Example 4-23). |
|
Combines the DBID, day, month, year, and sequence into a unique and repeatable generated name. This variable translates into
Note: |
|
Specifies the archived redo log thread number. |
|
Specifies the DBID. |
|
Specifies the month in the Gregorian calendar in format |
|
Specifies the tablespace name. This substitution variable is only valid when backing up data files as image copies. |
|
Specifies the name of the database, padded on the right with |
|
Specifies the piece number within the backup set. This value starts at Note: If you specify |
|
Specifies the resetlogs ID. |
|
Specifies the backup set number. This number is a counter in the control file that is incremented for each backup set. The counter value starts at |
|
Specifies the backup set time stamp, which is a 4-byte value derived as the number of seconds elapsed since a fixed reference time. You can use a combination of |
|
Specifies the year, month, and day in the Gregorian calendar in this format: |
|
Specifies an 8-character name constituted by compressed representations of the backup set or image copy number and the time the backup set or image copy was created. |
|
Specifies a system-generated unique file name (default). The meaning of
For an image copy of an archived redo log,
For an image copy of a control file,
|
|
Specifies the year in this format: |
|
Specifies the percent ( |
Example
Example 4-22 Specifying an ASM Disk Group
This example copies the database to ASM disk group DISK1
:
BACKUP AS COPY DATABASE FORMAT '+DISK1';
Example 4-23 Specifying a Format for Data File Copies
This example copies two data files with tag LATESTCOPY
to directory /disk2
:
BACKUP AS COPY COPY OF DATAFILE 27, 28 FROM TAG 'LATESTCOPY' FORMAT '/disk2/Datafile%f_Database%d';