Home > other >  Can you reset/retrieve a username/password used in schema creation of a desktop Oracle database?
Can you reset/retrieve a username/password used in schema creation of a desktop Oracle database?

Time:04-07

I have an Oracle 12C desktop database schema I created some time ago. I don't remember the username/password for when I created the schema.

Is there any way to retrieve it? I have full admin privileges for computer.

Thanks much.

CodePudding user response:

Login as SYS (I suppose you are still able to do that) and then issue:

alter user <<schema>> identified by <<new_password>>;
  • Related