Hi Folks,
This is very common issue we trobleshoot while integrating Data Protector with Oracle supported version or when someone modified the Oracle users from the database.
What you need to know?
1-The user you are entering for the integration must exist in the Data Protecter userlist as Admin.
2-The following attribute must be added to the user you're using to integrate, from Oracle.
Example:
Lets say that your username is kumar
So the output of the following command
SQL> select * from v$pwfile_users;
Should be:
USERNAME SYSDB SYSOP
----------------------------------------
KUMAR TRUE TRUE
SYSTEM FALSE TRUE
If Kumar has NOT SYSDB Attribute they you get the message:
ORA-01017: invalid username/password; logon denied
In order to grant SYSDB attributes to KUMAR you must run the following command:
***You must be logged with as SYSDB user
SQL> grant sysdba to KUMAR;
After this your should be able to integrate or to get your backups running again.
If you are completely sure that you are using the right username and password and everything is in place then log a case with support.
Dont forget to provide Kudos if you find this topic useful.
Thanks,
Walter.