ORA-28000: 账户用户锁定 (常规方法无效, 用 PLSQL 系统用户登录的方式, 选择 User, 手动解锁)

再项目实施过程中, 可能开发的同事 或者 实施顾问人员, 忘记密码 导致用户锁定. 常规的方式始终无法解决, 请尝试下下面的方案:

1. 常规的方式 如下
    (C) 版权所有 1985-2003 Microsoft Corp.

    C:Documents and SettingsAdministrator>sqlplus /nolog

    SQL*Plus: Release 10.2.0.1.0 - Production on 星期三 6 月 24 10:43:39 2009

    Copyright (c) 1982, 2005, Oracle.  All rights reserved.

    SQL> conn /as sysdba

    已连接。

    SQL> alter user system account unlock;

    用户已更改。

    SQL> exit

    从 Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

    With the Partitioning, OLAP and Data Mining options 断开

    C:Documents and SettingsAdministrator>sqlplus

    SQL*Plus: Release 10.2.0.1.0 - Production on 星期三 6 月 24 10:45:26 2009

    Copyright (c) 1982, 2005, Oracle.  All rights reserved.

    请输入用户名:  system

    输入口令:

    连接到:

    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

    With the Partitioning, OLAP and Data Mining options

    SQL>

    至此账户解锁成功:)

2. 当常规操作不可以时 请尝试下面截图中的的方法一:oracle 有三个默认的用户名和密码

  • 用户名:sys 密码:change_on_install

  • 用户名:system 密码:manager

  • 用户名:scott 密码:tiger
    方案.png