pugna
全部博文(171)
分类: Oracle
2015-02-10 16:40:34
你必须使用orapwd命令重建密码文件的方式来修改sys用户的密码,而不能使用alert user命令:
1.设置ASM实例的ORACLE_HOME和ORACLE_SID
2. connect /as sysdba fromsqlplus
3. 如果参数 "remote_login_passwordfile" 设置为EXCLUSIVE,必须关闭ASM实例
4. RENAME或DELETE已存在的密码文件PWD
5.使用命令:
WINDOWS:
orapwdfile=
UNIX:
orapwdfile=
在11.2你还能使用asmcmd使改单ASM实例的SYS用户密码
$ export ORACLE_SID=+ASM
$ asmcmd
ASMCMD> passwd sys
Enter old password (optional): ******
Enter new password: ******
In Clusterenvironment
ASMCMD> orapwusr--modify --password sys
Enter password: ******
ASMCMD> exit