ORA-28001:the password has expired

來源:互聯網
上載者:User

ORA-28001:the password has expired

Oracle提示錯誤訊息ORA-28001: the password has expired,是由於Oracle11G的新特性所致, Oracle11G建立使用者時預設密碼到期限制是180天(即6個月), 如果超過180天使用者密碼未做修改則該使用者無法登入。 Oracle公司是為了資料庫的安全性預設在11G中引入了這個預設功能,但是這個預設的功能很容易被DBA或者是開發人員給疏忽,一旦密碼180天未修改過,就會出現這樣的問題。

解決方案可通過如下SQL語句

SELECT * FROM dba_profiles WHERE profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME'

查詢密碼的有效期間設定,LIMIT欄位是密碼有效天數。

在密碼將要到期或已經到期時可通過如下語句進行修改密碼,密碼修改後該使用者可正常串連資料庫。

ALTER USER 使用者名稱 IDENTIFIED BY 密碼 ;

如果想去除180天的密碼生存周期的限制可通過如下SQL語句將其關閉

ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED

如上SQL語句將口令有效期間預設值180天修改成了“無限制”。但是出於資料庫安全性考慮,不建議將PASSWORD_LIFE_TIME值設定成UNLIMITED,建議大家定期修改資料庫使用者口令。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.