1、sqlplus / as sysdba;
2、select username,profile from dba_users;
3、select * from dba_profiles s where s.profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';
4、alter profile default limit password_life_time unlimited;
5、alter user yqdz identified by bocd account unlock;
6、commit;
by ebayboy - Oracle - 2011-12-20 09:48:16 阅读(557) 回复(0)
修改用户密码:
oracle用户登陆 SID=wichina sqlplus /nolog SQL> connect /as sysdba ERROR: ORA-01031: insufficient privileges SQL> connect sys/asd@wichibna as sysdba ERROR: ORA-01017: invalid username/password; logon denied 忘记sys密码,请各位高手指教如何改回~~~~~~
alter user sys identified by 来修改SYS的密码,但提示要长度大于8位,而且还要有数字和符号。 但我用Qw98765@ 这个密码却又提示 ERROR at line 1: ORA-00922: missing or invalid option 这是怎么回事啊。高手帮我解决一下啊,先谢啦! SQL> alter user sys identified by bbb; alter user sys identified by bbb * ERROR at line 1: ORA-28003: password verification for the specified password failed ORA-20002: Passwo...
解决方法: 1、 找到:D:\oracle\ora92\network\admin\sqlnet.ora; 2、 屏蔽SQLNET.AUTHENTICATION_SERVICES= (NTS) 3、 重新启动监听服务。 4、 登陆Sqlplus 5、 Sqlplus “sys as sysdba” 6、 随便输入一个口令 7、 修改用户密码:alter user 用户名 identified by 密码 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/26845/showart_1152124.html
我在RH9下安装oracle9i安装成功,设置SYS,和SYStem密码为PASSWORD,但用这个密码进不去呀!如果密码忘了我该怎么办?有没有办法补救。系统有没有像Windows下的DBA Ststudio 什么的?谢谢大家。