APT_CombinedOperatorController,0: Failure during execution o

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
novice_pgr
Participant
Posts: 8
Joined: Thu Jan 19, 2006 11:45 pm

APT_CombinedOperatorController,0: Failure during execution o

Post by novice_pgr »

Hello

We have lookup for the same table and if it is not found then we do an insert in the same table ; and if entry found in the lookup we do an update in the same table as that of lookup table.

We have used DB2 API stage .

And we get this error . "APT_CombinedOperatorController,0: Failure during execution of operator logic."

So...what could be the reason behind this error ?
kwwilliams
Participant
Posts: 437
Joined: Fri Oct 21, 2005 10:00 pm

Re: APT_CombinedOperatorController,0: Failure during executi

Post by kwwilliams »

novice_pgr wrote:Hello


And we get this error . "APT_CombinedOperatorController,0: Failure during execution of operator logic."

So...what could be the reason behind this error ?
With that error anything. If I understand correctly, the APT_CombinedOperatorController is part of the internal working of DataStage. When you hit compile, DataStage is going to try to tune your code by combining several of your stages into one section of code. This is the APT_CombinedOperator. Normally you see a more meaningful error in your log. It could be before or after this error. If you don't see anything more meaningful add the environmental variable $APT_DISABLE_COMBINATION and set it equal to True. Recompile and run again. This will keep all of your stages seperate and should yield you a more meaningful error message.
Post Reply