Case-sensitive passwords are a new security feature introduced in Oracle 10g, however this feature is enabled by default in Oracle 11g.
If you utilise an older version of Oracle Forms (6i in my instance) with an Oracle 11g database, case-sensitive passwords may cause issues. If the passwords don't match, you can't login to the database since the LOGON built-in transmits the password to the database in UPPERCASE.
Oracle 11g requires a modification to the SEC_CASE_SENSITIVE_LOGON startup option in order to deactivate case-sensitive passwords:
Step 1:
SQL> connect sys/oracle as sysdba
Step 2:
SQL> show parameter SEC_CASE_SENSITIVE_LOGON
Step 3:
SQL> sec_case_sensitive_logon boolean
TRUE
Step 4:
SQL>
alter
system
set
sec_case_sensitive_logon=
false
scope=both;
Revert the value back to true to allow case-sensitive passwords once more.
I hope it's helpful for you. If you have any queries, don't hesitate to contact me.
0 comments:
Post a Comment
If you have any doubts, please let me know. I will help you.