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;