Buckle without end

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
ogmios
Participant
Posts: 659
Joined: Tue Mar 11, 2003 3:40 pm

Re: Buckle without end

Post by ogmios »

Try debugging it a bit yourself, we all have to debug sometimes. And it's getting late here :wink: . Try to strip everything from it that is not required E.g. The following runs perfectly:

Code: Select all

MAX_RUN = 3
n=1 
Loop 
While n <=MAX_RUN 
n+=1 
Call DSLogInfo("Job Failed: V2NewTestTransitif2", "JobControl") 
repeat  
Then try to add the original code piece by piece. Does MAX_RUN gets properly initialized when you run the original?

Ogmios
auvray.muriel
Participant
Posts: 43
Joined: Wed Feb 19, 2003 7:17 am
Location: France - Paris
Contact:

Post by auvray.muriel »

After some adjustments in my code which is upstream of what I had given :oops: , and the integration as of the your corrections, all functions :lol: .

Thank you very much :wink:

Muriel
Post Reply