RMAN-04004@ORA-01017
MarGurSep 29 2006 — edited Jan 10 2010Hello everybody!
Please, help me:
i'm trying to tune recovery catalog database. i've already built a database called RECOVERY to store the recovery catalog. I pointed to the database where the recovery database will reside. then i created the user, that will store the catalog:
SQL> create user rman_user identified by oraclepass
2 default tablespace data
3 temporary tablespace temp;
User created.
then i granted those permissions:
SQL> grant connect, resource, recovery_catalog_owner to rman_user;
Grant succeeded.
SQL>
and then, when i launch RMAN tool:
C:\Documents and Settings\>rman
and trying to:
RMAN> connect catalog rman_user/oraclepass
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-04004: error from recovery catalog database: ORA-01017: invalid username/pa
ssword; logon denied
i didn't get why.. there is one user "rman" with pass, that works in another tasks.. what am i doing wrong?
thank you very much for you cooperations.