RMAN>STARTUP DBA - restrict database

How to startup a database in rman for restricted sessions. You would say conform SQLPLUS

SQLPLUS
SQL> startup restrict 
RMAN
RMAN> startup restrict 
It's not working, the word restrict generate an error inside RMAN.

The solution is using "STARTUP DBA"


RMAN> startup DBA


STARTUP

If you specify only STARTUP with no other options, then the instance starts the instance with the default server parameter file, mounts the control file, and opens the database. 
  1.  DBARestricts access to users with the RESTRICTED SESSION privilege. 
  2. FORCE
    If the database is open, then FORCE shuts down the database with a SHUTDOWN ABORT statement before re-opening it. If the database is closed, then FORCE opens the database.
  3. MOUNT
    Starts the instance, then mounts the database without opening it 
  4. NOMOUNT 
    Starts the instance without mounting the database. 

    This for Oracle RDBMS 10.2.04 and higher.

Popular posts from this blog

OracleRemExecService available Windows only

Dynamic listener registration (instance registration) - Connections via the Listener to the Database [TNS-12526 - TNS-12527 - TNS-12528 ]

Implementation of a GoldenGate Replicate Hub: GoldenGate Remote Capture and Deliver Goldengate processes