sorry,还是不行,提示:
提示invaild username/password。

解决方案 »

  1.   

    使用ORAPWD 命令可以修改SYS和INTERNAL的密码
    Usage: orapwd file=<fname> password=<password> entries=<use  where
        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.
      

  2.   

    internal 无密码
    是提示 :“没有给出登陆口令,无法登陆。”
      

  3.   

    ORAPWD命令是不是也要PL/SQL登陆进去的时候才能输入的?
    我现在连登陆都登不进去了,
    因为SYS用户和SYSTEM用户都不行了,
    而且以前没有新建别的用户名。
      

  4.   

    zlqs请问具体怎么修改?
    你上面列出的是执行orapwd.exe之后出现的现象阿。
      

  5.   

    1、首先找到密码文件“\oracle\ora92\database\pwdSid.ora”(类似这样的文件)。
    2、将此密码文件先移到其它地方,记住其名字。
    3、建一个同样名称的密码文件:
    在DOS模式下运行:
    c:\ORAPWD file=\oracle\ora92\database\pwdSid.ora PASSWORD=password ENTRIES=10
    其中的password即为SYS账户的密码,可为任意密码。
    4、再连接到数据库
    c:\sqlplus /nolog
    SQL>conn sys/password as sysdba;  --password是刚才建立的password。 
      

  6.   

    zgh2003(世纪飞扬)的方法可行,可以按照上述方法将INTERNAL的密码设置为自己想要的,然后再通过INTERNAL连接数据库就可以将SYSTEM等重新设置密码了!!