在10g以前,你可以用有权限的用户登录,查询到此用户密码的密文,再用密文改口令:
查询用户口令的密文
select password from dba_users where username='
再修改口令:
alter user USER1 identified by value '密文‘;
要想口令不过期,先要知道用户的profile是什么,再改这个profile的属性
查询用户的profile
select profile from dba_users where username='
修改此profile的的属性
ALTER PROFILE