原 Oracle使用者名稱和密碼鎖定處理

2021-09-06 02:56:24 字數 531 閱讀 5656

新安裝了oracle 11g

第2版,直接連線,提示使用者名稱scott鎖定。看來需要先解鎖scott使用者了。

開啟sql plus,提示如下:

請輸入使用者名稱:

(這裡輸入內容後回車)

sys/as sysdba

輸入口令:

(這裡不輸入,直接回車)

這種登陸啟用的是os驗證方式,因此不用輸入使用者名稱,密碼

提示如下:

oracle database 11g enterprise edition release 11.2.0.1.0

...字樣

再輸入:

sql>

alter user scott account unlock;

再輸入:

sql>

conn scott/tiger

使用scott連線上資料庫

不放心的話再看看dual中現在的使用者名稱是不是變為scott了

sql>

select user from dual;

Oracle忘記使用者名稱和密碼

microsoft windows 版本 10.0.16299.192 c 2017 microsoft corporation。保留所有權利。c windows system32 echo oracle sid oracle sid c windows system32 set oracle si...

ORACLE忘記使用者名稱密碼

oracle是不允許查詢密碼的,也就是說不能檢視dba users裡的password 儲存密碼的加密過的字串 字段對應的密碼明文。因為資料庫存放的密碼是加密過的,所以忘記密碼後只能通過重新初始化密碼。alter user username identified by password 但是可以查詢...

oracle忘記密碼使用者名稱被鎖定 解決方案

本方案參考 解決方案 window 進入cmd命令 按照圖上五步,即可 1,輸入 echo oracle sid 2,輸入set oracle sid 你的使用者密碼 口令 3,輸入sqlplus as sysdba 4,輸入 alter user 該使用者名稱 identified by 密碼 此...