Mega Code Archive
Categories
/
Oracle PLSQL Tutorial
/
User Privilege
Alter user to change the password
SQL> SQL> CREATE USER Alice IDENTIFIED BY simplepassword; User created. SQL> SQL> ALTER USER Alice IDENTIFIED BY complicatedpassword; User altered. SQL> SQL> drop user alice; User dropped. SQL>