Yet again...
A new 181 days ago created 11g database instance...
A software connection pool user is not allowed to connect to the database...
ORA-28002: the password will expire within 7 days
OR
ORA-28001: the password has expired
select profile from dba_users where username = 'POOLUSER';
DEFAULT
create profile pool_profile limit PASSWORD_LIFE_TIME unlimited;
alter user pooluser profile pool_profile;
select profile from dba_users where username = 'POOLUSER';
POOL_PROFILE
The more radical approach
ReplyDeletealter profile default limit password_life_time unlimited;