RMAN and SYSOPER [message #264857] |
Tue, 04 September 2007 17:08 |
owensmith99
Messages: 11 Registered: September 2007 Location: Dallas
|
Junior Member |
|
|
Hi There,
Can any of you give me some tips on running RMAN
via SYSOPER rather than SYSDBA?
Currently, when I run RMAN, I use an RMAN command line similar to this:
rman TARGET / CMDFILE crosscheck10.rcv LOG crosscheck10.txt
I don't see that it specifies SYSOPER or SYSDBA.
How do I write an RMAN command line which connects as SYSOPER?
-Owen
|
|
|
Re: RMAN and SYSOPER [message #264859 is a reply to message #264857] |
Tue, 04 September 2007 17:39 |
DreamzZ
Messages: 1666 Registered: May 2007 Location: Dreamzland
|
Senior Member |
|
|
SQL> create user dreamz identified by dreamz default tablespace qlink_user_ts;
User created.
SQL> grant create session to dreamz;
Grant succeeded.
SQL> !rman target dreamz/dreamz
Recovery Manager: Release 10.2.0.3.0 - Production on Tue Sep 4 22:38:44 2007
Copyright (c) 1982, 2005, Oracle. All rights reserved.
connected to target database: QLINK (DBID=3204298531)
RMAN>
RMAN> show all;
RMAN configuration parameters are:
CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
CONFIGURE BACKUP OPTIMIZATION OFF; # default
CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
.
.
RMAN>
http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96565/rcmsynta13.htm
[Updated on: Tue, 04 September 2007 17:41] Report message to a moderator
|
|
|
|
|
|