Scenario 1:
2. If present, delete the user.
3. Save the RPD and deploy it, if opened in offline mode
4. Restart the OPMN services.
5. if this is not your scenario or this doesn't resolve your issue, try Scenario 2.
Scenario 2:
SELECT ACCOUNT_STATUS, USERNAME FROM DBA_USERS WHERE USERNAME LIKE 'DEV%';
(Please make sure your database schema for OBIEE starts with 'DEV')
2. Check the ACCOUNT_STATUS for the OBIEE schemas DEV_BIPLATFORM and DEV_MDS.
3. If the users are locked, run the below query
ALTER USER <username> ACCOUNT UNLOCK;
4. If it shows an EXPIRED status, run the below query:
ALTER USER <username> IDENTIFIED BY <your_password>
5. You can set the account status to NEVER EXPIRE and NEVER LOCKED state by running the below queries.
2. Once you identify the Profile run the query,
- In your RPD, under Identity menu please check whether the user is listed or not.
2. If present, delete the user.
3. Save the RPD and deploy it, if opened in offline mode
4. Restart the OPMN services.
5. if this is not your scenario or this doesn't resolve your issue, try Scenario 2.
Scenario 2:
- Open the SQL developer and run the below query with Admin or SYS privilege
SELECT ACCOUNT_STATUS, USERNAME FROM DBA_USERS WHERE USERNAME LIKE 'DEV%';
(Please make sure your database schema for OBIEE starts with 'DEV')
2. Check the ACCOUNT_STATUS for the OBIEE schemas DEV_BIPLATFORM and DEV_MDS.
3. If the users are locked, run the below query
ALTER USER <username> ACCOUNT UNLOCK;
4. If it shows an EXPIRED status, run the below query:
ALTER USER <username> IDENTIFIED BY <your_password>
5. You can set the account status to NEVER EXPIRE and NEVER LOCKED state by running the below queries.
- Find the profile name of the user
2. Once you identify the Profile run the query,
ALTER PROFILE <profilename> LIMIT PASSWORD_LIFE_TIME UNLIMITED;
ALTER PROFILE <profilename> LIMIT PASSWORD_LOCK_TIME UNLIMITED;
No comments:
Post a Comment