Page 1 of 1

Error in running parallel jobs

Posted: Sun Feb 07, 2010 6:43 am
by luckychn
i am trying to remove duplicates using remove duplicate stage on the emp table using scott user

but getting an error like this ... please provide me a work around for it

Sequential_File_1,0: Field "COMM" is null but no null export handling is defined

Re: Error in running parallel jobs

Posted: Sun Feb 07, 2010 6:51 am
by zulfi123786
luckychn wrote:i am trying to remove duplicates using remove duplicate stage on the emp table using scott user

but getting an error like this ... please provide me a work around for it

Sequential_File_1,0: Field "COMM" is null but no null export handling is defined
I guess you are trying to remove the duplicates and then writing it into a sequential file, the sequential file doesnot have any Null concept hence you need to specify a value which then will represent NULLs within the file.
Go to the Format tab of the seq file stage and then click on the Field defaults Option, you will find "Null Field Value" option at the lower right corner just click on that and then type in a value wich will be written instead of NULLs. Use the same value as the Null field value while reading the file back so that the seq file stage will import then as NULLs.

Posted: Sun Feb 07, 2010 8:02 am
by chulett
Take the error message after "COMM" and do an exact search for it here.

Posted: Sun Feb 07, 2010 8:22 am
by nagarjuna
Set the null field value in sequential file stage ...

Posted: Sun Feb 07, 2010 11:46 am
by luckychn
Thanks guys

The workaround works

:)