您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“ORACLE中sys如何臨時修改其他未知用戶密碼”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“ORACLE中sys如何臨時修改其他未知用戶密碼”這篇文章吧。
ORACLE在pre-11g,11g, 12c 使用了不同的密碼策略, 所以要對應(yīng)用相應(yīng)的版本修改.
11g以前版本的修改方法
用alter user identified by values命令很方便
[oracle@orazhang ~]$ ora SQL*Plus: Release 10.2.0.1.0 - Production on 星期四 9月 22 10:42:07 2011 Copyright (c) 1982, 2005, Oracle. All rights reserved. Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, OLAP and Data Mining options --此時anbob密碼是anbob sys@ORCL> select NAME,PASSWORD from user$ where name='ANBOB'; NAME PASSWORD ------------------------------ ------------------------------ ANBOB ACF67A552551E848 sys@ORCL> alter user anbob identified by anbob123; User altered. sys@ORCL> select NAME,PASSWORD from user$ where name='ANBOB'; NAME PASSWORD ------------------------------ ------------------------------ ANBOB 64096627C6DB8EEA sys@ORCL> conn anbob/anbob123 Connected. anbob@ORCL> select 'do something' from dual; 'DOSOMETHING ------------ do something anbob@ORCL> conn / as sysdba Connected. anbob@ORCL> alter user anbob identified by values 'ACF67A552551E848'; sys@ORCL> conn anbob/anbob Connected.
11g版本的修改方法
sec_case_sensitive_logon參數(shù)控制著密碼是否啟用了大小寫敏感.
#11g版本 DBA_USERS視圖增加了一列PASSWORD_VERSIONS, 記錄了當(dāng)前的密碼使用是哪種hash算法, 如果是11G,新的hash值會記錄在user$.spare4字段. 如果查之前的dba_user.password將為NULL.
1, SQL> select spare4 from user$ where name='ANBOB'; --remeber the values 2, SQL> alter user anbob identified by [newvalue] 3, SQL> alter user anbob identified by values [#1 spare4 value]
# 記錄當(dāng)前的所有用戶密碼
select 'alter user '||name||' identified by values '''||password||''';' from user$ where spare4 is null and password is not null union select 'alter user '||name||' identified by values '''||spare4||';'||password||''';' from user$ where spare4 is not null and password is not null; 12c# 版本好像是又增加了密碼了新的HASH 算法.
以上是“ORACLE中sys如何臨時修改其他未知用戶密碼”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。