程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle 11g 設置用戶密碼大小寫敏感測試,oracle11g

oracle 11g 設置用戶密碼大小寫敏感測試,oracle11g

編輯:Oracle教程

oracle 11g 設置用戶密碼大小寫敏感測試,oracle11g


11g通過一個參數設置密碼大小寫敏感,下面來做個試驗:

C:\Documents and Settings\guogang>sqlplus gg_test/[email protected]_gg
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 8月 4 17:54:19 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
連接到:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
PL/SQL Release 11.2.0.1.0 - Production
CORE 11.2.0.1.0 Production
TNS for Linux: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production
SQL> show parameter sec_case_sensitive_logon
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
sec_case_sensitive_logon boolean TRUE

C:\Documents and Settings\guogang>sqlplus gg_test/[email protected]_gg
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 8月 4 17:54:06 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
ERROR:
ORA-01017: invalid username/password; logon denied
請輸入用戶名:

C:\Documents and Settings\guogang>sqlplus gg_test/[email protected]_gg
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 8月 4 17:52:35 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
連接到:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> alter system set sec_case_sensitive_logon=false;
系統已更改。

SQL> 從 Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options 斷開

C:\Documents and Settings\guogang>sqlplus gg_test/[email protected]_gg
SQL*Plus: Release 10.2.0.1.0 - Production on 星期一 8月 4 17:53:48 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
連接到:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> show parameter sec_case_sensitive_logon
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
sec_case_sensitive_logon boolean FALSE


oracle 11g登錄密碼問題

可能原因如,請一一核對:
1、如果你以sys用戶登錄的話,連接身份請選擇【as sysdba】
說明:如果你的sys用戶密碼在安裝的時候沒有修改,他的默認密碼是:
【change_on_install】。
如果你改了忘記了,可以利用如下方法重置:
1)進入cmd
2)sqlplus / as sysdba
3)alter user sys identified by 新密碼;

2、如果是你新建的普通用戶登錄的話,用戶名和密碼請重新確認是否正確,如果實在是確認不了的話,使用sqlplus工具按照如下方式重新建一個用戶再試

1)進入cmd
2)sqlplus / as sysdba 或者 sqlplus sys/密碼 as sysdba
3) create user 用戶名 identified by 密碼;
4) grant connect,resource to 用戶名;
5) conn 用戶名/密碼
說明:如果第 5)步可以連接成功說明,用戶建立成功,就可以用這個用戶登錄了。

---
以上,希望對你有所幫助。
 

oracle 11g 怎更改某個用戶密碼永不過期

用exrezssion web 2分割圖像後有個較大的不規則熱點區域內有個較小的圓形熱點區域,現在是運行後只有較大的熱點有反應,在確定是裡面的圓形熱點區域內單擊也是應用的較大的熱點區域的單擊事件,找屬性也找不到這個z屬性,誰能幫幫我啊,或是用其他方法解決這個多熱點區域疊加問題。
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved