Oracle9i Recovery Manager Reference Release 2 (9.2) Part Number A96565-01 |
|
RMAN Commands , 33 of 59
A subclause used to specify database files and archived redo logs.
Use this clause in the following commands:
Syntax Element | Description |
---|---|
|
Specifies datafiles by filename or file number. The clause specifies datafile image copies or backup sets that contain at least one of the datafiles. See Also: "datafileSpec" |
|
Specifies tablespace names. The clause specifies datafile image copies or backup sets that contain at least one of the datafile from the specified tablespace. |
Specifies a range of archived redo logs. See Also: "archivelogRecordSpecifier" |
|
|
Specifies backup sets or image copies of all files in the current database. |
Omits the specified tablespaces from the |
|
|
Specifies the current control file. |
|
Specifies the current server parameter file. |
The following command lists image copies of all the files in the database, skipping the temp
tablespace, which is a dictionary-managed temporary tablespace:
LIST COPY OF DATABASE SKIP TABLESPACE temp;
The following example queries the media manager for the status of server parameter file and archived redo log backups created in the last three months:
ALLOCATE CHANNEL FOR MAINTENANCE DEVICE TYPE sbt; CROSSCHECK BACKUP OF SPFILE ARCHIVELOG FROM TIME 'SYSDATE-90';
The following command deletes expired backups of the control file:
DELETE EXPIRED BACKUP OF CONTROLFILE;
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|