c:\>sqlplus "/as ssdba"sql> alter user system identified by newpassword;
sql> conn system/newpassword;

解决方案 »

  1.   

    internal 密码还记得吗? 用internal登陆,修改system密码
      

  2.   

    用internal或SYS用户以 SYSDBA的身份进入就可以修改用户口令了
      

  3.   

    数据库版本是什么?如果是9I c:\>sqlplus /as ssdbasql> alter user system identified by manager;
    sql> conn system/manager如果是8IC:\SVRMGRL
    C:\SVRMGRL>CONNECT INTERNAL
    C:\SVRMGRL>alter user system identified by manager;
    C:\SVRMGRL>connect system/manager
      

  4.   

    to 飘:
    我执行你的命令:
    sqlplus /as ssdba
    怎么提示:
    C:\Documents and Settings\Administrator>sqlplus /as ssdba
    用法: SQLPLUS [ [<option>] [<logon>] [<start>] ]
    其中 <option> ::= -H | -V | [ [-L] [-M <o>] [-R <n>] [-S] ]
         <logon>  ::= <username>[/<password>][@<connect_string>] | / | /NOLOG
          <start>  ::= @<URI>|<filename>[.<ext>] [<parameter> ...]
            "-H" 显示 SQL*Plus 的版本标帜和使用语法
            "-V" 显示 SQL*Plus 的版本标帜
    "-L" 只尝试登录一次
            "-M <o>" 使用 HTML 标志选项 <o>
            "-R <n>" uses restricted mode <n>
            "-S" uses silent mode
      

  5.   

    我想应该是:
    sqlplus /nolog
    connect sys/口令 as sysdba (或者用internal)
    alert user system identified by 新口令