我安装了oracle 10g后在dos窗口就是启动不了scott/tiger这个用户,把这样的错误F:\>sqlplus scott/tigerSQL*Plus: Release 10.2.0.1.0 - Production on 星期日 6月 20 17:34:27 2010Copyright (c) 1982, 2005, Oracle.  All rights reserved.ERROR:
ORA-28001: the password has expired
更改 scott 的口令
新口令:而且要我更改口令是根本就输入不了东西,这是怎么回事呀,

解决方案 »

  1.   


    --一般SCOTT用户是锁住的--必须用SYS或者SYSTEM 登陆 解锁
    alter user SCOTT account unlock;
      

  2.   


    scott 默认是锁的,用其他帐号连,比如sys/system用户。sqlplus /nolog
    conn / as sysdba;
      

  3.   

    --取消密码限制
    alter profile default limit password_life_time unlimited
      

  4.   


    我是这样理解的:第一次在启动oracle 10g之前要在dos窗户登陆,用sys账号登陆将其解锁 ,因为他默认是锁着的,然后就可以进入登陆scott了。还有每次启动oracle时要启动一个oracle实例,不知道这样理解对不对?