How to resert Admin’s Password APEX or HTMLD? |
what you need when you forgot your admin APEX or HTMLDB password.
You have no idea even reset the admin password.
i ll share "How to resert Admin’s Password APEX or HTMLD" and i hope it's easy to guide you. . . . come on let following these. . . .
Here it's :
1. Connect sys as sysdba
sqlplus sys as sysdba2. Collect the information of the FLOWS% schema
select username,password,account_status from dba_users where username like ‘FLOW%’;3. Unlock the latest FLOWS% schema
USERNAME PASSWORD ACCOUNT_STATUS ---------------- ------------------ ---------------- FLOWS_030000 240C2BE199B3DB1F LOCKED -------
alter user FLOWS_030000 account unlock;4. Change the Password of FLOWS_030000
alter userFLOWS_030000 identified by mypass5. Create user in Internal Workspace
conn FLOWS_030000/mypass
connected
BEGIN6. Open the applications, and Login to Internal Workspace with your new user :
wwv_flow_api.set_security_group_id(p_security_group_id => 10);
wwv_flow_fnd_user_api.create_fnd_user
(p_user_name => ‘adminq’
,p_email_address => ‘tikusrat@yahoo.com’
,p_web_password => ‘adminq’
);
END;
/
PL/SQL procedure successfully completed.
commit;
Commit complete.
http://your_ip:your_port/pls/htmldb
Login :
- Workspace : Internal
- Username : adminq
- password : adminq