Case sensitive password in Oracle
LINK https://oracle-base.com/articles/11g/case-sensitive-passwords-11gr1
ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE; This will ensure the database system property is set to false.
>show parameter sec_case_sensitive_logon to check the current setting
Name Type Value
sec_case_sensitive_logon boolean false
Stackoverflow link http://stackoverflow.com/questions/14476875/ora-01017-invalid-username-password-when-connecting-to-11g-database-from-9i-clie
Comments
Post a Comment