while checking for null

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
krisna
Participant
Posts: 77
Joined: Tue Apr 08, 2008 11:33 pm

while checking for null

Post by krisna »

input is oracle and date column has a null value and target is also oralce table. Iam using IsNull() function. When i execute the job, job is aborted with this error.

APT_CombinedOperatorController,0: Fatal Error: Null value on the accessor interfacing to field "start_date".

node_node1: Player 4 terminated unexpectedly.
kittu.raja
Premium Member
Premium Member
Posts: 175
Joined: Tue Oct 14, 2008 1:48 pm

Re: while checking for null

Post by kittu.raja »

krisna wrote:input is oracle and date column has a null value and target is also oralce table. Iam using IsNull() function. When i execute the job, job is aborted with this error.

APT_CombinedOperatorController,0: Fatal Error: Null value on the accessor interfacing to field "start_date".

node_node1: Player 4 terminated unexpectedly.
Instead of IsNull Try with start date = ""
Rajesh Kumar
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

As with all errors that are from the combined operator controller, turn off operator combination first to localize the stage causing the error.
kittu.raja
Premium Member
Premium Member
Posts: 175
Joined: Tue Oct 14, 2008 1:48 pm

Post by kittu.raja »

ArndW wrote:As with all errors that are from the combined operator controller, turn off operator combination first to localize the stage causing the error. ...
How to turn off combined operator controller?
Rajesh Kumar
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Add the environment parameter $APT_DISABLE_COMBINATION and set the value to "true" for your run.
Post Reply