ORA-28001: The password has expired

前端 未结 8 1391
忘掉有多难
忘掉有多难 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:37

    I had same problem even after changing the password, it wasn't getting reflected in SQLDEVELOPER.

    Atlast following solved my problem :

    1. Open Command Propmt
    2. Type sqlplus
    3. login as sysdba
    4. Run following command : alter user USERNAME identified by NEW_PASSWORD;
    0 讨论(0)
  • 2020-12-23 11:38

    I had same problem, i am trying to login database it appear a message with: "ORA-28001: The password has expired" , I have fixed the problem simple steps

    1.open command prompt 2.type sqlplus 3.It will ask Enter Password, you can give old password, it will show password has expired ORA-28001 4.It will ask new password and retype password 5.It will change with new password 6.Go to the sql database and try to connect with new password, it will connect.

    0 讨论(0)
  • 2020-12-23 11:47
    C:\>sqlplus /nolog
    SQL> connect / as SYSDBA
    SQL> select * from dba_profiles;
    SQL> alter profile default limit password_life_time unlimited;
    SQL> alter user database_name identified by new_password;
    SQL> commit;
    SQL> exit;
    
    0 讨论(0)
  • 2020-12-23 11:48

    Try to connect with the users in SQL Plus, whose password has expired. it will prompt for the new password. Enter the new password and confirm password.

    It will work

    SQL Plus output image

    0 讨论(0)
  • 2020-12-23 11:50
    ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
    alter user EPUSR100 identified by EPUSR100 account unlock;
    commit;
    
    0 讨论(0)
  • 2020-12-23 11:52

    Check "PASSWORD_LIFE_TIME" by

    Sql > select * from dba_profiles;

    Set to Never expire

    Sql> ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

    Then reset the password of locked user.

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