Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: What's the password for a role

Re: What's the password for a role

From: Erwin Dondorp <erwindon_at_wxs.nl>
Date: Sat, 16 Jun 2001 01:07:44 +0200
Message-ID: <3B2A9540.990F1514@wxs.nl>

Terry Dykstra wrote:
> I need to determine the password for a role. What sys table has that info?
The only public data dictionary table that holds information about roles is sys.dba_roles. (all_roles and user_roles do not exist). However sys.dba_roles does not contain any password info, except for a boolean flag that a password is required. The data dictionary view used by the SQL*Export uses sys.exu8rol to retrieve the crypted password.
The SQL*Import uses "CREATE ROLE ... IDENTIFIED BY VALUES ..." to set the crypted password (this option is undocumented). "ALTER ROLE" has the same possibility.
The passwords for users and roles are never stored in their original format, but a DBA can teporarily set a new password, and then restore the old password without even knowing the old password.

HTH,         E. Received on Fri Jun 15 2001 - 18:07:44 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US