Oracle 忘記使用者名稱密碼的處理方式

2021-08-23 15:05:35 字數 389 閱讀 4443

1、保證你登陸的系統使用者有足夠的許可權。windows:將自己的使用者加入到oracle dba group中。unix 就用root登陸吧

2、在command中執行 sqlplus /nolog

3、在sql> 命令符後 輸入 conn /as sysdba

如果出現下面這個錯誤。

error:

ora-12560: tns:protocol adapter error

這可能是你有多個資料庫例項的原理,就在第二步之前輸入:

set oracle_sid=***x,***x就是你的database sid.

4、在sql> 命令符後輸入:alter user system identified by **** ;

星號是你的密碼。

ORACLE忘記使用者名稱密碼

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

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忘記使用者名稱密碼怎樣恢復

一 忘記除sys system使用者之外的使用者的登入密碼。用sys 或system 使用者登入。conn sys pass word as sysdba 使用如下語句修改使用者的密碼。alter user user name identified by newpass 注意 密碼不能全是數字。並且...