linux 下oracle提示:the account is locked
提示账号被锁了,不是密码不对,使用命令:
alter user scott account unlock;如果密码不对,可以再修改:
alter user scott identified by tiger 前提是先登进oracle系统: 可以用如下方法进入oracle: oracle@localhost~]$ sqlplusConnected to an idle instance.
enter username: /as sysdba
SQL>
ps:更改用户密码的方式:
conn /as sysdba;
alter user 用户名 identified by 密码;