oracle密碼過期設定和修改密碼問題
學習了:
sqlplus / as sysdbaselect * from dba_profiles s where s.profile='default' and resource_name='password_life_time';
alter profile default limit password_life_time unlimited;
alter user username identified by password;
修改密碼的時候,如果密碼帶有@符號,
學習了:
需要使用雙引號進行包圍,使用者登陸需要使用單引號擴上雙引號;
alter user username identified by "pass@word";sqlplus 'user/"pass@word"'
oracle密碼策略過期修改
01 檢視當前open使用者 select username,account status,expiry date,profile from dba users 02 檢視目前的密碼過期策略 select from dba profiles s where s.profile default and...
oracle密碼過期
oracle提示錯誤訊息ora 28001 the password has expired,是由於oracle11g的新特性所致,oracle11g建立使用者時預設密碼過期限制是180天,如果超過180天使用者密碼未做修改則該使用者無法登入。oracle公司是為了資料庫的安全性預設在11g中引入了...
oracle資料庫密碼過期修改
用系統賬號登入資料庫 sqlplus as sysdba 查詢此使用者的準確使用者名稱 select username from dba users where username like username 檢視資料庫預設的密碼有效期 select from dba profiles where p...