我用的oracle 10g !
SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 11月 10 10:39:51 2009Copyright (c) 1982, 2005, Oracle.  All rights reserved.请输入用户名:  system/system连接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining optionsSQL> conn scott/tiger
已连接。
SQL>这是我打开sqlplus时运行的结果
然后我在net Manager 里配置了本地连接 
主机名我用localhost(自己的机子名字)
端口号:1521
确定了,但是我测试就是报正在尝试使用以下用户 ID 连接:system
测试没有成功。
ORA-28000: the account is locked在输入的字段中可能有错误, 
或者服务器连接未就绪。 密码我输对着呢,刚在sqlplus里都连接上了,打开那2个配置文件和我配置的一样,我也没改过,还是
连接不上。还有个问题就是oracle的网页登陆地址在哪找?我安装的时候备份了一份,但是无法连接

解决方案 »

  1.   


    system 帐户被被锁了。楼主的sys用户能登陆吗? 或者用conn / as sysdba 试试,连接成功后,对system用户解锁后在试试alter user system account unlock;
      

  2.   


    SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 11月 10 11:04:44 2009Copyright (c) 1982, 2005, Oracle.  All rights reserved.请输入用户名:  system/system as sysdba连接到:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining optionsSQL> alter user system account unlock;用户已更改。SQL>
    net Manager里面还是
    正在尝试使用以下用户 ID 连接:system
    测试没有成功。
    ORA-28000: the account is locked在输入的字段中可能有错误, 
    或者服务器连接未就绪。 
    那个网页登陆的地址在那块能找到啊?
      

  3.   

    alter user username account unlock;
    账户解锁后,username 账户再一次被允许连接。
      

  4.   

    net Manager里面还是 
    正在尝试使用以下用户 ID 连接:system 
    测试没有成功。 
    ORA-28000: the account is locked 
    system 用户不是sysdba用户, 你用 conn sys/pwd as sysdba 试试 或者 conn / as sysdba。  如果这样能登陆就没有问题了。  楼主直接用system/system 能登陆吗?conn system/system as sysdba  也相当于conn sys/pwd as sysdba登陆. 不管system用户存在与否,密码是否正确,都是可以登陆的。
    用system 
      

  5.   

    ORA-28000: the account is locked
    第一步:使用PL/SQL,登录名为system,数据库名称不变,选择类型的时候把Normal修改为Sysdba;
    第二步:选择myjob,查看users;
    第三步:选择system,右击点击“编辑”;
    第四步:修改密码,把“帐户被锁住”的勾去掉;
    第五步:点击“应用”再点击“关闭”;
    第六步:重新登录就可以通过验证了;