Abnormal termination of stage %s

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
ejazsalim
Premium Member
Premium Member
Posts: 51
Joined: Wed Apr 09, 2003 6:42 am
Location: VA, USA

Abnormal termination of stage %s

Post by ejazsalim »

When I run a job it Aborts with the following warning

xGDW00MPRMatBillCost..AgGDWStandMatUsgVar: %s

Abnormal termination of stage xGDW00MPRMatBillCost..XFmGDWValidateMatlPlant detected

-------------------------------------------------------------------------------------------------------------------------------------------------------

When I reset the job it says

From previous run
DataStage Job 3447 Phantom 24801
Abnormal termination of DataStage.
Fault type is 11. Layer type is BASIC run machine.
Fault occurred in BASIC program JOB.1982241586.DT.1325968284.TRANS1 at address 20
-------------------------------------------------------------------------------------------------------------------------------------------------------

My diskspace is about 83% full.
I have already rebooted my DataStage server once

What does the message "Abnormal Termination" translates to in simple english ?

The Directory listing of RT_BP3447 is
tetd40:/export/interface/etldata/CMIS/project/RT_BP3447[47]$ ls -otr
total 80
-rw-rw-r-- 1 v920069 5919 Apr 19 19:15 JOB.1982241586.DT.1325968284.TRANS4
-rw-rw-r-- 1 v920069 5699 Apr 19 19:15 JOB.1982241586.DT.1325968284.TRANS2
-rw-rw-r-- 1 v920069 5999 Apr 19 19:15 JOB.1982241586.DT.1325968284.TRANS5
-rw-rw-r-- 1 v920069 5603 Apr 19 19:15 JOB.1982241586.DT.1325968284.TRANS3
-rw-rw-r-- 1 v920069 15365 Apr 19 19:15 JOB.1982241586.DT.1325968284.TRANS1

Does address 20 means line 20 of file "JOB.1982241586.DT.1325968284.TRANS1" ?

I have also made sure that I am not doing any calculation with null values.

Thanks in advance
Ejaz
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

No, the address is actually the offset in the compiled code.

You can view this compiled code in an "assembler" format using

Code: Select all

VLIST RT_BP3447 JOB.1982241586.DT.1325968284.TRANS1 
The associated source statement should be nearby in the output.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ejazsalim
Premium Member
Premium Member
Posts: 51
Joined: Wed Apr 09, 2003 6:42 am
Location: VA, USA

Post by ejazsalim »

That worked great Ray. Thanks

I used the VLIST command on the DataStage Administrator Command Output Window is there any way to spool the output to a file or cut and paste.
hemant
Participant
Posts: 67
Joined: Mon Dec 15, 2003 6:43 am

Post by hemant »

hi ejazsalim and to all how r in the sink .

This problem i have faced last time,you must be doing aggregation or sorting with the plug in,
one of the alternative method is use cosort -sortcl .
its a problem of temp space only which it uses during aggregation or sorting of data so this temp space is to be increased for the completion of activity.
i hope this will work.

Regards
Hemant






ejazsalim wrote:That worked great Ray. Thanks

I used the VLIST command on the DataStage Administrator Command Output Window is there any way to spool the output to a file or cut and paste.
ejazsalim
Premium Member
Premium Member
Posts: 51
Joined: Wed Apr 09, 2003 6:42 am
Location: VA, USA

Post by ejazsalim »

That's what I assumed to Hemant but I was wrong with my past experiences I was thinking this to be a diskspace/memory issue but what it turned out to be was that one of the derivation was turned to not null while the value going in was a NULL changing that fixed my problem and thanks to Ray for the VLIST due to which I could pinpoint to the particular column that was giving me this problem.

I wish they had more meaningfull messages :roll:
hemant
Participant
Posts: 67
Joined: Mon Dec 15, 2003 6:43 am

Post by hemant »

hi! ejazsalim

That means that for two different problem yu can get same message cause "Abnormal Termination" i felt use for space related problem and now yu are saying something related "Null"value,this is also a very generic problem we face .thanxs yu clear it up .

-hemant


ejazsalim wrote:That's what I assumed to Hemant but I was wrong with my past experiences I was thinking this to be a diskspace/memory issue but what it turned out to be was that one of the derivation was turned to not null while the value going in was a NULL changing that fixed my problem and thanks to Ray for the VLIST due to which I could pinpoint to the particular column that was giving me this problem.

I wish they had more meaningfull messages :roll:
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

See new thread on capturing output of "UniVerse" commands.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
hemant
Participant
Posts: 67
Joined: Mon Dec 15, 2003 6:43 am

Post by hemant »

Hi!Ray
i didn't get - how can we see the "See new thread on capturing output of "UniVerse" commands".can yu be elaborate explicitly .

Thanks and Regards
Hemant
ray.wurlod wrote:See new thread on capturing output of "UniVerse" commands.
ejazsalim
Premium Member
Premium Member
Posts: 51
Joined: Wed Apr 09, 2003 6:42 am
Location: VA, USA

Post by ejazsalim »

This is what Ray was talking about
viewtopic.php?t=87389

Thanks once again Ray
hemant wrote:Hi!Ray
i didn't get - how can we see the "See new thread on capturing output of "UniVerse" commands".can yu be elaborate explicitly .

Thanks and Regards
Hemant
ray.wurlod wrote:See new thread on capturing output of "UniVerse" commands.
Post Reply