Page 1 of 1

NULL Handling using Modify stage

Posted: Thu Aug 10, 2006 4:24 am
by aaikat
I want to convert any NULL values in column XYX to "NULLXYZ" using Modify stage.

I used the following statement as specification :

XYZ:string = NullToValue(XYZ,"NULLXYZ")

But it is giving error like :

main_program: Error parsing modify adapter: Error in binding: Unknown conversion: NullToValue
Expected destination field selector, got: ")"; input:

Re: NULL Handling using Modify stage

Posted: Thu Aug 10, 2006 4:33 am
by balajisr
aaikat wrote:I want to convert any NULL values in column XYX to "NULLXYZ" using Modify stage.

I used the following statement as specification :

XYZ:string = NullToValue(XYZ,"NULLXYZ")

But it is giving error like :

main_program: Error parsing modify adapter: Error in binding: Unknown conversion: NullToValue
Expected destination field selector, got: ")"; input:
Use handle_null function instead of NullToValue.

Posted: Thu Aug 10, 2006 4:44 am
by aaikat
Thanks,it is solved