oracle 提示登入密碼過期解決
1.登入到oracle的 伺服器
2.切換到oracle 使用者
3.設定到當前操作的例項名:export oracle_sid=***
4.連線資料庫的命令列程式設計客棧模式:sqlplus /nolog
5.sql: conn /as sysdba;用dba的身份登入
6.修改過期的使用者密碼設定:
修改使用者密碼:alter user *** identified by ***
修改使用者密碼之後,重新使用修改的使用者密碼連線資料庫就ok了,假如仍然還有鎖定使用者操作,
記得執行解鎖命令:alter user *** unlock;
oracle使用scott使用者登入提示密碼過期
www.cppcns.com在初次安裝oracle的時候,很多人在解鎖scott使用者的同時會忘記給scott 使用者初始化密碼, 但是oracle會給scott 使用者設定乙個預設的密碼那就是tiger , 可是在安裝成功之後使用scott使用者登入oracle資料庫卻提示密碼過期。
出現上述這種情況時,我們可以在cmwww.cppcns.comd行中 輸入:
sqlplus /nolg ;
(使用的是無使用者名稱的方式登入)
然後在sql> 命令中輸入:
conn sys/password as sysdba;
(此處的sys使用者的密碼是我們給資料庫設定的密碼)
在登入成功之後,會提示已連線
最後輸入:alter user scott identified by tiger;
(修改scott使用者的密碼)vkaet
alter user scott account unlock;
(對scott解鎖)
然後我們就可以使用scott使用者登入了。
總結本文標題: oracle 提示登入密碼過期完美解決方法
本文位址:
防止oracle提示密碼過期
安裝完 11g的庫記得調整 alter profile default limit failed login attempts unlimited alter profile default limit password life time unlimited select from dba pro...
oracle密碼過期
oracle提示錯誤訊息ora 28001 the password has expired,是由於oracle11g的新特性所致,oracle11g建立使用者時預設密碼過期限制是180天,如果超過180天使用者密碼未做修改則該使用者無法登入。oracle公司是為了資料庫的安全性預設在11g中引入了...
Oracle 使用者密碼過期
oracle 11g 之前預設的使用者時是沒有密碼過期的限制的,在oracle 11g 中預設的profile啟用了密碼過期時間是180天。如下 select from dba profiles where profile default and resource name password lif...