(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
RMAN> report need backup days = 7 database; <br> <br>Report of files whose recovery needs more than 7 days <br>File Days Name <br>---- ----- ------------------------------------------ <br>1 1 /opt/oracle/oradata/test/system01.dbf<br>RMAN> report need Backup <br>2> days = 7; <br> <br>Report of files whose recovery needs more . . .<br>RMAN commands are not case sensitive<br>Commands can span many lines<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
RMAN> run { <br>2> allocate channel d1 type disk; <br>3> backup database; <br>4> } <br> <br>allocated channel: d1 <br>channel d1: sid=19 devtype=DISK <br>. . .<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
RMAN> backup database; <br> <br>Starting backup at 19-NOV-03 <br>allocated channel: ORA_SBT_TAPE_1 <br>channel ORA_SBT_TAPE_1: sid=13 devtype=SBT_TAPE <br>channel ORA_SBT_TAPE_1: NMO v3.5.0.1 <br>channel ORA_SBT_TAPE_1: starting full datafile backupset<br>My pre-configured channel is tape device<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
RMAN> shutdown immediate <br>RMAN> startup mount <br>RMAN> alter database open; <br>RMAN> sql 'alter tablespace users offline'; <br>RMAN> sql 'alter tablespace users online'; <br>RMAN> sql 'truncate table system.t'; <br>RMAN> sql ‘begin skill.upddb; end;’;<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
9i supports stand-alone backup, restore and recovery<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
RMAN> configure default device type to tape; <br> <br>old RMAN configuration parameters: <br>CONFIGURE DEFAULT DEVICE TYPE TO DISK; <br>new RMAN configuration parameters: <br>CONFIGURE DEFAULT DEVICE TYPE TO 'TAPE'; <br>new RMAN configuration parameters are successfully stored<br>RMAN> show default device type; <br>RMAN configuration parameters are: <br>CONFIGURE DEFAULT DEVICE TYPE TO DISK;<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
RMAN> report schema; <br>RMAN> report need backup;<br>RMAN> list backupset summary; <br>RMAN> list backupset verbose;<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).
RMAN> run { <br>2> allocate channel x type sbt; <br>3> validate backupset 144; <br>4> } <br> <br>released channel: ORA_DISK_1 <br>allocated channel: x <br>channel x: sid=13 devtype=SBT_TAPE <br>channel x: NMO v3.5.0.1 <br> <br>channel x: starting validation of datafile backupset<br>
(If applicable)
Other Text:
(Examples or comments displayed on slide, if any).