Oracle® Database Backup and Recovery Reference 11g Release 2 (11.2) Part Number E10643-05 |
|
|
PDF · Mobi · ePub |
Use the HOST
command to invoke an operating system command-line sub-shell from within RMAN.
Execute this command at the RMAN prompt or within the braces of a RUN
command.
Syntax Element | Description |
---|---|
HOST |
Displays a command prompt and resumes after you exit the subshell (see Example 2-90). |
' command ' |
Runs the command in the specified string and then continues (see Example 2-91). |
Example 2-90 Hosting to the Operating System Within a Backup
This example makes an image copy of datafile
3
, hosts out to the Linux prompt to check that the copy is in the directory (the Linux session output is indented and displayed in bold), and then resumes the RMAN session:
RMAN> BACKUP DATAFILE 3 FORMAT '/disk2/df3.cpy'; Starting backup at 15-FEB-07 using channel ORA_DISK_1 channel ORA_DISK_1: starting full datafile backup set channel ORA_DISK_1: specifying datafile(s) in backup set input datafile file number=00003 name=/disk1/oracle/oradata/prod/undotbs01.d bf channel ORA_DISK_1: starting piece 1 at 15-FEB-07 channel ORA_DISK_1: finished piece 1 at 15-FEB-07 piece handle=/disk2/df3.cpy tag=TAG20070215T111326 comment=NONE channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01 Finished backup at 15-FEB-07 RMAN> HOST; % ls /disk2/df3.copy /disk2/df3.cpy % exit exit host command complete RMAN>