oracle提示错误消息ora-28001: the password has expired 解决办法: 1、利用sysdba权限登陆; 2、查看账户信息: select username,account_status from dba_users 3、如果账户locked/ expired, 得先解锁: alter user bjmmis account unlock; 再修改密码 a
oracle提示错误消息ora-28001: the password has expired
解决办法:
1、利用sysdba权限登陆;
2、查看账户信息:
select username,account_status from dba_users
3、如果账户locked/expired,
得先解锁:
alter user bjmmis account unlock;
再修改密码
alter user bjmmis identified by newpwd;
一劳永逸破解11g180天自动密码失效的办法:
查询密码有效期
select * from dba_profiles where profile='default' and resource_name='password_life_time'
修改为无限制:
alter profile default limit password_life_time unlimited