防止oracle提示密碼過期

2021-10-08 11:42:38 字數 412 閱讀 5445

安裝完》11g的庫記得調整

alter profile default limit failed_login_attempts unlimited;

alter profile default limit password_life_time unlimited;

--select * from dba_profiles where dba_profiles.profile='default';--確認有幾種profile,

--select * from dba_users order by created desc;

修改後,還沒有被提示ora-28002警告的帳戶不會再碰到同樣的提示,已經被提示的帳戶必須再改一次密碼,

alter user 使用者 identified by 密碼 account unlock;

oracle密碼過期

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

oracle 提示登入密碼過期完美解決方法

oracle 提示登入密碼過期解決 1.登入到oracle的 伺服器 2.切換到oracle 使用者 3.設定到當前操作的例項名 export oracle sid 4.連線資料庫的命令列程式設計客棧模式 sqlplus nolog 5.sql conn as sysdba 用dba的身份登入 6....

Oracle 使用者密碼過期

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