Mega Code Archive

 
Categories / Oracle PLSQL / User Previliege
 

Alter user to change the password

SQL> SQL> SQL> CREATE USER Alice IDENTIFIED BY simplepassword; User created. SQL> SQL> ALTER USER Alice IDENTIFIED BY complicatedpassword; User altered. SQL> SQL> SQL> drop user alice; User dropped. SQL> SQL>