oracle11g密碼效期及使用者鎖定

2021-07-10 01:18:30 字數 614 閱讀 1168

出於安全考慮,oracle11g密碼預設的效期為180天,超過180天,使用者將無法連線到資料庫。預設密碼嘗試次數為10次,超過10次,使用者將被鎖定。

具體引數可以通過下列語句檢視:

1.select * from dba_profiles where profile ='default' and resource_name ='password_life_time';

2.select * from dba_profiles where profile ='default' and resource_name ='failed_login_attempts';

更改密碼的命令為alter user *** identified by yyy;

使用者解鎖的命令為alter user *** account unlock;

密碼效期改為無限制的命令為

alter profile default limit password_life_time unlimited;

密碼嘗試次數改為無限制的命令為

alter profile default limit failed_login_attempts unlimited;

更改完後,無需重啟服務,立即生效。

oracle 11g登入密碼問題

可能原因如,請一一核對 1 如果你以sys使用者登入的話,連線身份請選擇 as sysdba 說明 如果你的sys使用者密碼在安裝的時候沒有修改,他的預設密碼是 change on install 如果你改了忘記了,可以利用如下方法重置 1 進入cmd 2 sqlplus as sysdba 3 a...

Oracle 11g密碼過期問題

oracle 11g預設使用者密碼會在使用180天後過期,我們可以通過dba users資料字典看一下使用者的資訊。sql select username,account status,lock date,expiry date,created,profile from dba users 結果如下...

oracle 11g 使用者密碼過期問題

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