1、如果密码因为时间到期而过期,需要修改密码才能重新。
alter user mx identified by 'oracle';
alter user mx account unlock;
2、如果不记得密码,可以通过values方式修改
select name,password from dba_users; --11g
select name,password from user$; --19c
alter user mx identified by values '7C9BA362F8314299';
3、如果不想频繁过期,可调整profile
select username,profile from dba_users;
alter profile default limit PASSWORD_LIFE_TIME unlimited;