@kadin
To reset a password in Oracle, you can follow these steps:
ALTER USER username IDENTIFIED BY new_password;
Replace "username" with the username for which you want to reset the password, and "new_password" with the new password you want to set.
Alternatively, if you have the necessary privileges, you can also reset a password using the Oracle Enterprise Manager Database Control:
These are the two common methods to reset a password in Oracle. Make sure you have the necessary privileges to perform these actions.