Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am reading data from oracle table where a column of type integer having null values .
In tmap I am trying below
row1.batch_id==null?1:0 and setting a value 1 or 0 accordingly. But this is giving me an error .
Can someone please help here about how to compare a integer column for null check
Thanks,
a
something like
Relational.ISNULL(row1.FL_LOG_ATD_DATE)? row1.ATD_UTC:row1.FL_LOG_ATD_DATE
where
Relational.ISNULL(<column_to_check>)?<value if null>:<value_if_not_null>
In my exemple, the oracle database accept null value for this date.
So, I am testing it with the tmap ...
see attached.