裝了乙個oracle,長時間不用,難免密碼啥的忘了
-------------------------------------
報錯:ocisessionbegin
ora-28000: the account is locked
解決:alter user scott account unlock
;--解鎖
-------------------------------------
報錯:ocisessionbegin
ora-28001: the password has expired
試十次就鎖住啦,慎重啊
解決:alter user scott identified by tiger ;
--換密碼
-------------------------------------
問題:select * from dba_profiles where profile='default'
and resource_name='password_life_time' --
查詢密碼期限,預設
180天
解決:alter profile default limit password_life_time unlimited --
改為無限長,但不建議
oracle使用者解鎖
裝了乙個oracle,長時間不用,難免密碼啥的忘了 報錯 ocisessionbegin ora 28000 the account is locked 解決 alter user scott account unlock 解鎖 報錯 ocisessionbegin ora 28001 the pa...
oracle解鎖使用者
背景 oracle資料庫鎖了,經理讓我去處理下,然後我登陸伺服器,oracle伺服器上面執行sqlplus,在不知道管理員密碼的情況下解決了問題.解決方法 命令列下 sqlplus nolog 執行sqlplus命令,進入sqlplus環境,nolog引數表示不登入 sql connect as s...
oracle 解鎖使用者
第一種方法 前提 a使用者被鎖住,但擁有b使用者擁有dba許可權 1.使用b使用者登入pl sql 2.開啟sql 視窗,執行命令 alter user a account unlock 第二種方法 前提 知道資料庫伺服器 root 密碼 1.使用ssh工具以root身份連線伺服器 2.然後切換到o...