Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Dave
Please check your query statement if it is correct.
On tOracleInput,
"select nvl(null,'') as EmptyString from dual" ==>return null
"select nvl(null,' ') as EmptyString from dual" ==>there is a blank space bettween single quote, return empty string.
Best regards
shong
With no space between the single quotes, oracle returns an empty string, not a null. See screenshot below.
Hello
With no space between the single quotes, oracle returns an empty string, not a null. See screenshot below.
If you execute it as query statement(press F9 in Oracle sql developer), you will see it return null on result viewer. Anyway, you could get null without space bettween single quote or empty string with space bettween single quote in Talend.
Best regards
shong