IBM Db2 for z/OS: Error retrieving the schema list when you try to connect to a Db2 for z/OS server
Copy link to section
When you test the connection to a Db2 for z/OS server and the connection cannot retrieve the schema list, you might receive the following error:
CDICC7002E: The assets request failed: CDICO2064E: The metadata for the column TABLE_SCHEM could not
be obtained: Sql error: [jcc][10150] [10300][4.28.11] Invalid parameter: Unknown column name
TABLE_SCHEM. ERRORCODE=-4460, SQLSTATE=null
Can't run generated code from deprecated functionality to load data for an Informix connection
Copy link to section
You receive a "DatabaseError: Execution failed on sql: ... unable to rollback" when running the code that is generated to load data from an Informix database when using the deprecated functionality and you try to query a table with
an upper-case name.
Cause
Copy link to section
The Informix database is configured for case-sensitive identifiers and you need to update the generated code.
Resolving the problem
Copy link to section
If you can, change to using the code that is generated using the Flight service to load data from an Informix connection . If you want to continue using the code that is generated by the deprecated functionality, you need to edit the generated
code as follows:
For Python, add the connection property 'DELIMIDENT=Y' to the connection and surround the upper-case identifier with double-quotes (""). Replace the following lines:
For R, add the connection property 'DELIMIDENT=Y' to the connection and surround all upper case names with double-quotes (""). Replace the following lines: