Collections:
Change User Password in Oracle
How To Change User Password in Oracle?
✍: FYIcenter.com
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:
>.\bin\sqlplus /nolog SQL> connect SYSTEM/fyicenter 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".
⇒ Delete a User Account in Oracle
⇐ Create a New User Account in Oracle
2019-07-09, 2824🔥, 0💬
Popular Posts:
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...