Home > database >  SQL PLUS how to change user password?
SQL PLUS how to change user password?

Time:10-16

If inscribe SQL PLUS how to change user password

CodePudding user response:

The ALTER USER username IDENTIFIED BY password;

CodePudding user response:

If no DBA user can log in to:
The CONNECT/AS SYSDBA;
The ALTER USER username IDENTIFIED BY password;

CodePudding user response:

The ALTER USER username IDENTIFIED BY password;
  • Related