首页 > 代码库 > oralce的系统用户system的输入口令怎么找回?遇见ORA-28000: the account is locked怎么解锁?
oralce的系统用户system的输入口令怎么找回?遇见ORA-28000: the account is locked怎么解锁?
好几个月前安装的Oracle软件忽然想用就忘记了当初设置的口令了,今天查了下怎么找回。
以一个用户jqz/jqz(曾经建立的一个用户。幸亏还记得)的身份登录后:
SQL> connect/as sysdba
已连接。
SQL> alter user system identified by system;
用户已更改。
system的password就是system了。
遇见以下的错误了怎么解决那:
ORA-28000: the account is locked
第一步:使用 q=PL/SQL&ie=utf-8&src=http://www.mamicode.com/se_lighten_f" style="margin:0px; padding:0px; color:rgb(0,0,240); font-family:Verdana,Arial,Helvetica,sans-serif; font-size:13px; line-height:19px; display:inline; position:static">PL/SQL,登录名为system,数据库名称不变。选择类型的时候把Normal改动为Sysdba; q=%E4%BF%AE%E6%94%B9%E5%AF%86%E7%A0%81&ie=utf-8&src=http://www.mamicode.com/se_lighten_f" style="margin:0px; padding:0px; color:rgb(0,0,240); font-family:Verdana,Arial,Helvetica,sans-serif; font-size:13px; line-height:19px; display:inline; position:static">改动password。把“帐户被锁住”的勾去掉;
第二步:选择myjob,查看users;
第三步:选择system,右击点击“编辑”;
第四步:
第五步:点击“应用”再点击“关闭”;
第六步:又一次登录就能够通过验证了;
方法二:解锁
SQL> conn /as sysdba
已连接。
SQL> alter user system account unlock;
用户已更改。
oralce的系统用户system的输入口令怎么找回?遇见ORA-28000: the account is locked怎么解锁?