首页 > 数据库 >Oracle密码过期设置

Oracle密码过期设置

时间:2022-11-23 09:22:52浏览次数:29  
标签:profile 密码 过期 修改 Oracle alter

1、oracle查询数据库密码哪一天过期

select username,account_status,expiry_date,profile from dba_users;
其中expiry_date即是过期的时间

2、查询数据库密码有效期

select * from dba_profiles s where s.profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';

3、修改数据库密码永不过期

alter profile default limit password_life_time unlimited;

4、修改数据库密码180天过期

alter profile default limit password_life_time 180;

5、如果还是提示密码过期,要修改一下密码,可以修改成和之前一样的

alter user 用户名 identified by 原来的密码;

6、如果被锁定了,可以解锁

alter user 被锁用户名 account unlock;

标签:profile,密码,过期,修改,Oracle,alter
From: https://www.cnblogs.com/Baker-Street/p/16917187.html

相关文章