Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Rman Scripts
Hi,
I like to inform you that
I am using the following routine in order to get RMAN Data without
using Recovery Catalog:
Bat file:
rem Getting RMAN Info
set connect_db=%1
if exist connect_DB == goto usage
rman TARGET %connect_db% nocatalog @ c:\RMAN\script.rman >>
c:\RMAN\Rman_Text.txt
:end
set connect_db=
Script contain:
list backup of database archivelog all; report obsolete device type 'sbt_tape';
After running the above bat file, we can see the data, but the rman_Text.txt file also contains the commands with the results:
For Example:
Rman_Text.txt
list backup of database archivelog all; report obsolete device type 'sbt_tape'
Then the results of the command.
How should we suppress the commands in the final text file (rman_Text.txt) in order to display only the results not with commands.
Thanks
bilal
sybrandb_at_yahoo.com wrote in message news:<a1d154f4.0403040027.527f07c1_at_posting.google.com>...
> bzbzzb_at_hotmail.com (MATHEW KING) wrote in message news:<528c8daf.0403031808.4fc75f7f_at_posting.google.com>...
> > Hi.
> >
> > I wanted that when we issue the command like:
> > c:\>RMAN target system/manager nocatalog
> >
> > The text that display on RMAN prompt just after issuing the above
> > command would be save in a text file or in a table.
> > Is there a way via which we can redirect this text into a text file or
> > in table.
> > For Example:
> > Rman connect to target database with nocatalog etc.
> >
> > Your suggestion will be appreciated
> >
> > Thanks
> >
> > bilal
> >
> My suggestion is to read the manual. You seem refuse to do that.
> If you would only have read the manual, you wouldn't have asked your question here.
>
> Sybrand Bakker
> Senior Oracle DBA
Received on Thu Mar 04 2004 - 10:12:05 CST