Basic Oracle Concepts and Programming Question:
Download Questions PDF

How To Change User Password in Oracle?

Answer:

If you want to change a user's password, you can log in as SYSTEM and use the ALTER USER command as shown in the following example:

>.insqlplus /nolog

SQL> connect SYSTEM/globalguideline
Connected.

SQL> ALTER USER DEV IDENTIFIED BY beginner;
User altered.

Note that ALTER is SQL statement, so you need to terminate it with ";". This command resets DEV's password to "beginner".

Download Oracle Database Interview Questions And Answers PDF

Previous QuestionNext Question
How To Create a New User Account in Oracle?How To Delete a User Account in Oracle?