linux环境中修改oracle用户密码

                                      Linux环境中修改Oracle用户密码


第一步:
[root@localhost ~]# su - oracle
第二步:
[oracle@localhost ~]$ sqlplus /nolog;
第三步:
SQL> connect / as sysdba

修改密码命令:
SQL> alter user sys identified by wwwwww;            修改sys用户密码为wwwwww
 
SQL> alter user system identified by wwwwww;     修改system用户密码为wwwwww

猜你喜欢

转载自z773171880.iteye.com/blog/1560276