ORA-28001: The password has expired

前端 未结 8 1392
忘掉有多难
忘掉有多难 2020-12-23 11:33

I\'m facing the problem about my database in Oracle, When I opened my database, it appear a message with: \"ORA-28001: The password has expired\"

I have updated my a

相关标签:
8条回答
  • 2020-12-23 11:55

    I have fixed the problem, just need to check:

    open_mode from v$database
    

    and then check:

    check account_status to get mode information
    

    and then use:

    alter user myuser identified by mynewpassword account unlock;
    
    0 讨论(0)
  • 2020-12-23 12:02

    you are in wrong cdb/pdb so connect to right pdb

    0 讨论(0)
提交回复
热议问题