這篇文章主要為大家展示了“ORACLE中sys如何臨時(shí)修改其他未知用戶密碼”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“ORACLE中sys如何臨時(shí)修改其他未知用戶密碼”這篇文章吧。
創(chuàng)新互聯(lián)建站服務(wù)項(xiàng)目包括雁峰網(wǎng)站建設(shè)、雁峰網(wǎng)站制作、雁峰網(wǎng)頁制作以及雁峰網(wǎng)絡(luò)營(yíng)銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,雁峰網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到雁峰省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
ORACLE在pre-11g,11g, 12c 使用了不同的密碼策略, 所以要對(duì)應(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 --此時(shí)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值會(huì)記錄在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如何臨時(shí)修改其他未知用戶密碼”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!