Oracle 11g中解鎖被鎖定的使用者

2022-07-20 23:15:23 字數 538 閱讀 2385

oracle 11g中修改被鎖定的使用者:scott

在安裝完oracle11g和建立完oracle資料庫之後,想用資料庫自帶的使用者scott登入,看看連線是否成功。

在cmd命令中,用「sqlplus  scott/ tiger」登入時,

老是提示如下資訊: error:ora-28000:賬戶已被鎖定。

在cmd命令提示符中可直接登入oracle,輸入如下命令:

sqlplus / as sysdba;

接著執行如下命令:

sql> alter user scott account unlock;

顯示使用者已更改,這樣就完成解鎖的操作。

接下來,你還可以重新給scott這個使用者設定密碼

修改scott的登入密碼

sql> alter user scott identified by grace;

顯示使用者已更改,(grace為新的密碼) 這樣就ok了,

測試一下scott/grace能否成功登入

sql> conn scott/grace 顯示已連線。

oracle11g密碼效期及使用者鎖定

出於安全考慮,oracle11g密碼預設的效期為180天,超過180天,使用者將無法連線到資料庫。預設密碼嘗試次數為10次,超過10次,使用者將被鎖定。具體引數可以通過下列語句檢視 1.select from dba profiles where profile default and resour...

oracle被鎖定的記錄解鎖

下面是我在開發中遇到的乙個問題,通過以下的方法很好的解決了,下面部分是我從別的網頁中摘下來的,以防自己忘記。oracal資料庫中的乙個表的一條記錄被鎖定,既不能修改也不能刪除 只看到沙漏,等乙個小時都是這樣 刪除表物件也不行,報錯 ora 00054 資源正忙,要求指定nowait 解決方法 1 當...

oracle 使用者被鎖定解鎖方法

1.系統引數配置 select from dba profiles where resource name like failed login attempts 2.檢視被鎖的使用者 select lock date,username from dba users where username us...