Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Where are the username and password stored?

680807Feb 2 2009 — edited Feb 3 2009
I would like to know where the usernames and passwords stored are.
Whenever I run, I found the user name but I want to know the table name of the username is stored.

When I checked the 101 page:

Under the”Set Username Cookie” process;
begin
owa_util.mime_header('text/html', FALSE);
owa_cookie.send(
name=>'LOGIN_USERNAME_COOKIE',
value=>lower(:P101_USERNAME));
exception when others then null;
end;
*“Login” process;*
wwv_flow_custom_auth_std.login(
P_UNAME => :P101_USERNAME,
P_PASSWORD => :P101_PASSWORD,
P_SESSION_ID => v('APP_SESSION'),
P_FLOW_PAGE => :APP_ID||':1'
);
I would like to understand these processes and where the usernames and passwords stored are.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 3 2009
Added on Feb 2 2009
22 comments
4,127 views