Database Administration (MOSC)

MOSC Banner

How to retrieve existing user password in Oracle Database 19c Enterprise Edition Release 19.0.0.0.0

forgot user password, how can retrieve user UNENCRYPTED password in Oracle 19c?

mange to retrieve encrypted password using below SQL. But need unencrypted

with t as (select dbms_metadata.get_ddl('USER','USER_NAME') ddl from dual )

   select replace(substr(ddl,1,instr(ddl,'DEFAULT')-1),'CREATE','ALTER')||';'

    from t;

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center