使用命令orapwd
C:\>orapwd
Usage: orapwd file=<fname> password=<password> entries=<users>  where
    file - name of password file (mand),
    password - password for SYS (mand),
    entries - maximum number of distinct DBA and OPERs (opt),
  There are no spaces around the equal-to (=) character.------------------------------------------------------------------------
软件环境: 
1、Windows NT4.0+ORACLE 8.0.4
2、ORACLE安装路径为:C:\ORANT实现方法: 
用法:orapwd file= password= entries=参数解释:
    file - name of password file (mand),
    password - password for SYS and INTERNAL (mand),
    entries - maximum number of distinct DBA and OPERs (opt),
    There are no spaces around the equal-to (=) character.1、进入DOS下2、默认internal密码文件在c:\orant\database下,是隐藏属性,文件名称与数据库实例名有关  如默认ORACLE实例名为ORCL,则internal密码文件名为pwdorcl.ora3、建立新的internal密码文件,起个新名字为pwdora8.ora  orapwd80 file=pwdora8.ora password=B entries=5     --注:password项一定要用大写,并且不要用单引号4、拷贝pwdora8.ora文件到c:\orant\database目录下5、运行regedit,修改口令文件指向6、找到HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE项  定位ORA_ORCL_PWFILE子项,改变其值为c:\orant\database\pwdora8.ora7、关闭ORACLE数据库,重新启动8、进入svrmgr30服务程序,测试internal密码是否更改成功

解决方案 »

  1.   

    很容易的:假设用户为user1
    1、登陆到orale的server
    2、sqlplus /nolog
       sql>conn / as sysdba
       sql>alter user user1 identified by 'newpassword';一且就Ok了!
      

  2.   

    hrb_qiuyb:
            照做了,提示密码无效,或遗漏密码.
      

  3.   

    如果忘了sys的密码,就用root去改
    如果忘了非sys的密码,就用sys去改阿
      

  4.   

    谢谢hrb_qiuyb:alter user user1 identified by 'newpassword';但是前面的单引号不该加,所以我一开始没试成功.