Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

RuntimeException: Null value in non-Nullable

Hi,

I created a job as follows: TPostgresInput ---> TMap ----> TfileOutputDelimited. I am trying using the TMap to filter Null or empty rows on COD_RGE




As we can see on the schema, the COD_RGE is Nullable.

This is my filter to catch the rejects.



When I execute, I get
Exception in component tPostgresqlInput_1
java.lang.RuntimeException: Null value in non-Nullable column

I checked all my non nullable columns and did not find null value.

Not sure how to resolve this issue. Please help. Thanks.

Labels (2)
2 Replies
Anonymous
Not applicable
Author

The error should include the Java code line number.
Click on the Code tab and take a look.
This may help you to narrow down the issue.
Anonymous
Not applicable
Author

Thanks for the hint. Before checking, I saw on TaledForge a similar post where te suggestion was: check whether the schema columns and the source query columns are in same sequence. I did so and indeed there was a synchronisation problem.

After synchronisation, It now works OK.