How to create an alternate database user for AVUSER and SYS to perform admin taks or troubleshooting in RSA Identity Governance and Lifecycle
Originally Published: 2017-02-17
Article Number
Applies To
Issue
Changing the database AVUSER and SYS user passwords requires additional steps (including encrypting the password) and application restart.
If you have a password policy that requires frequent changes to the password as recommended, you may not want to have to change AVUSER and SYS users, but use alternate users to perform admin tasks and troubleshooting.
This solution provides the steps to create an alternate database user for AVUSER and SYS to perform admin task or troubleshooting in Identity Governance and Lifecycle.
Tasks
SYS Alternatives
An alternative to using SYS user is possible by simply granting the DBA role to the user. An alternative only applicable with SQL*Plus is by using OS authentication, by adding a Linux user into the dba group. Doing this would allow that user to connect to the instance as sysdba by executing the command:sqlplus /as sysdba .This would eliminate the need to create the extra Oracle account and just allow existing Linux users to get into the instance as SYS without the password. However, this approach is not going to work for remote administration.
AVUSER Alternatives
An alternative to AVUSER is possible by granting SELECT ANY TABLE privilege to the new user from SYS. It will give that Oracle user the ability to access any table in the database in read-only mode. Such a user’s password can then be managed independently from AVUSER.Note that granting the new user the existing ACMPROFILE will not help. The concept of Oracle Profile is about limiting resources and not access. For example, we set ACMPROFILE for AVUSER’s password to never expire. So the customer should create their own (probably new) Oracle Profile with password expiration set to the desired period and assign the profile to the user that is allowed to read AVUSER’s objects.
See the screen shots below to see the values for ACMPROFILE as they come out of the box:
Resolution
To create alternate to SYS user
- Login as sysdba
$ sqlplus "/as sysdba"
- Execute the following commands to create and grant DBA role to the new user:
CREATE USER <NewUser> IDENTIFIED BY <password>; GRANT DBA TO <NewUser>;
To create alternate to AVUSER user
- Login as sysdba
$ sqlplus "/as sysdba"
- Execute the following commands to create and grant DBA role to the new user:
CREATE USER <NewUser> IDENTIFIED BY <password>; GRANT SELECT ANY TABLE TO <NewUser>;
Related Articles
Patch fails on remote database because execute privilege is not granted to AVDWUSER on SYS.DBMS_LOB in RSA Identity Lifecy… 195Number of Views What is the SYS.ORA_TEMP_1_DS_% table sometimes seen in a running query in RSA Identity Governance & Lifecycle 37Number of Views RSA Identity Governance and Lifecycle - 702 Migration fails with ORA-01720: grant option does not exist for 'SYS.DUAL' 136Number of Views How to create a new ActiveMQ KahaDB for use with AFX in RSA Identity Governance & Lifecycle 320Number of Views ORA-39070: "Unable to open the log file" error or ORA-06512: at "SYS.DBMS_SYS_ERROR" and "SYS.DBMS_DATAPUMP" errors when b… 269Number of Views
Trending Articles
Passwordless Authentication in Windows MFA Agent for Active Directory – Quick Setup Guide RSA Authentication Manager 8.9 Release Notes (January 2026) RSA Authentication Manager Upgrade Process RSA Authentication Manager 8.7 SP2 Setup and Configuration Guide An example of SSO using SAML and ADFS with RSA Identity Management and Governance 6.9.x
Don't see what you're looking for?