ORA-28000: the account is locked-的解决办法
Linux
1.连接Oracle
su - oracle
2.无用户/口令登陆
sqlplus / as sysdba
3.解锁
alter user 被锁定用户名 account unlock;
4.提交
commit;
oracle忘记密码,修改密码
1:输入命令: sqlplus /nolog ,进入oracle控制台,并输入 conn /as sysdba;以DBA角色进入。
2:若修改某一个用户密码, 修改用户口令 格式为: alter user 用户名 identified by 新密码; 以 test 为例,密码修改为 123456. 可输入 alter user test identified by 123456;