HI, we have one workflow which connects to DB2 and the flow was running fine on our Alteryx 10.5 version server but after we upgraded the server to 11.7 it is throwing below error-
SQLSTATE=01004[IBM][CLI Driver] CLI0165E Error in row
can any ine please help what is causing this issue exactly and what will be the solution?
also i wanted to know the DB2 driver compatible version with Alteryx 11.7 version.
Thanks a lot in advance. its very urgent so requesting for quick help.
Solved! Go to Solution.
@skaps You can fix by inserting the following lines in the db2cli.ini file or the Advanced Settings tab within the driver to prevent that error from being reported back to Alteryx:
IGNOREWARNINGS=1 IGNOREWARNLIST = "'01003'"
The difference in behavior with 11.7 is due to greater database transparency. Previously, the user had no notification that there were modifications being made to the data. The database error was generated, but not reported through Alteryx. Now the error is reported.
hi @DiganP,
I also found out the same that the issue is actually with Alteryx version. In v10.5 invalid data got bypassed with a warning message for each row of data but in 11.7 Alteryx forced the flow to fail if any such invalid data come up.
I have not tried adding the code that you shared, I will try and will check. Thanks a lot for your help.
@DiganP thank you for the fix! Can you or someone else walk me through how to apply that code to the driver or to the db2cli.ini file (such as where these files might be, how to edit/add to them, etc).
thanks!
IGNOREWARNINGS=1 IGNOREWARNLIST = "'01003'"
I am facing the same issue, but to no avail. I inserted the code, but it didn't help.
Is there any way of fixing this issue. This seems to be with 11.7 version. Below is the error that I am seeing -
Info: Input Data (2): ODBC Driver version: 03.51
Error: Input Data (2): Error SQLExtendedFetch: [IBM][CLI Driver] CLI0165E Error in row. SQLSTATE=01S01[IBM][CLI Driver] CLI0002W Data truncated. SQLSTATE=01004[IBM][CLI Driver] CLI0165E Error in row. SQLSTATE=01S01[IBM][CLI Driver] CLI0002W Data truncated. SQLSTATE=01004[IBM][CLI Driver] CLI0165E Error in row. SQLSTATE=01S01[IBM][CLI Driver] CLI0002W Data truncated. SQLSTATE=01004
End: Designer x64: Finished running CANADA_COREHR_PDD.yxmd in 13.9 seconds with 1 error
Thanks Jakub-mg. RTRIM function to trim down the spaces in char type columns worked. Kudos.