ORA-28002 sticks
On a database not being used and visited for quite a while I found that user SYSTEM got an ERROR =ORA-28002: password will expire within 7 days
and on another user: ORA-28002: password will expire within 6 days.
I then did the following:
SQL> select profile from dba_users where username = 'SYSTEM';PROFILE------------------------------DEFAULTSQL> alter profile DEFAULT limit password_life_time UNLIMITED;Profile altered.
Did the same for the user.
But still I'm getting this ORA-28002 when logging into either, SYSTEM of USER
--
Christoph