打开sql提示ORA-28000: the account is locked-的解决办法

使用PL/SQL,登录名为system,数据库名称不变,选择类型的时候把Normal修改为Sysdba;

登录进去后执行:File->command window->
(1)conn sys/sys as sysdba; //以DBA的身份登录
(2)alter user scott account unlock;// 然后解锁
(3)conn scott/tiger //弹出一个修改密码的对话框,修改一下密码就可以了

你可能感兴趣的:(打开sql提示ORA-28000: the account is locked-的解决办法)