Question: Apex 4.2 Installation failed on Oracle Database 10.2.0.3
Answer:
Application Express 4.0 cannot be installed on Database version 10.2.0.3 on Linux and potentially other platforms as well. The installation will end with "ORA-06502: PL/SQL: numeric or value error: associative array shape is not consistent with session parameters".
Solution for this problem Apply the patch for bug 5890966 (related bug) or apply the 10.2.0.3 Patch 6 on Windows Platforms (if on Windows Platforms) or apply the 10.2.0.4 database patch set or upgrade to 11gR1 or later.
Question: Oracle Report 6i connections problem with Oracle 11g Database ?
Answer:
Oracle 11g database has a new parameter SEC_CASE_SENSITIVE_LOGON (case sensitive password enabled for logon) - default is TRUE.
But Forms transforms (for example) "scott/tiger" to "SCOTT/TIGER".
We can do this:
alter user scott identified by TIGER
OR
set SEC_CASE_SENSITIVE_LOGON to FALSE
Comments
Post a Comment