(1)如果oracle是采用OS认证方式,可以如下:
sqlplus /nolog;
connect / as sysdba
alter user sys identified by xxxx;
alter user system identified by xxxx;
(2)如果是采用口令文件方式,可以如下:
orapwd file=pwdxxx.ora password=你设定的新密码 entries=10
设定完后,重新启动服务,再次登陆就可以了。
后一种毕竟涉及到重启,有点麻烦,当采用口令文件方式的时候,先修改sqlnet.ora中参数:
SQLNET.AUTHENTICATION_SERVICES= (NTS)
其中NTS表示(windows下)采用操作系统认证方式。
然后使用方法(1)修改sys和system的密码,再将sqlnet.ora中参数改回原样。