Oracle密碼過期,取消密碼180天限制

2022-05-18 05:35:58 字數 369 閱讀 7106

開啟命令提示框輸入以下內容:

1.輸入:sqlplus /nolog //進入oralce控制台

2.輸入:conn /as sysdba //以管理員許可權登入

3.輸入:alter profile default limit password_life_time unlimited ;//將密碼有效期由預設的180天修改成「無限制」,修改之後不需要重啟動資料庫,會立即生效

4.輸入:alter user 使用者名稱 identified by 原密碼;//帳戶再改一次密碼

使用修改後的使用者登入,如果報「ora-28000:使用者已被鎖」,解鎖

4.輸入:alter user db_user account unlock;commit;

oracle密碼過期

oracle提示錯誤訊息ora 28001 the password has expired,是由於oracle11g的新特性所致,oracle11g建立使用者時預設密碼過期限制是180天,如果超過180天使用者密碼未做修改則該使用者無法登入。oracle公司是為了資料庫的安全性預設在11g中引入了...

Oracle賬戶過期,取消180天密碼時間限制

恢復內容開始 1 進入sqlplus模式 sqlplus as sysdba 2 帳戶再改一次密碼 alter user 使用者名稱 identified by 原密碼 3 檢視使用者密碼的有效期設定 一般預設的配置檔案是default select from dba profiles where ...

Oracle 使用者密碼過期

oracle 11g 之前預設的使用者時是沒有密碼過期的限制的,在oracle 11g 中預設的profile啟用了密碼過期時間是180天。如下 select from dba profiles where profile default and resource name password lif...