Search found 6797 matches

by DSguru2B
Thu Jun 21, 2007 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: folding a single record into multiple records at fixed width
Replies: 24
Views: 7200

bcarlson wrote:That's not actually what I was thinking... You won't need to add a line terminator at all:

But the OP wants the data to be pivoted at every 5th position. How will that happen without concatenating the line terminators :?:
by DSguru2B
Thu Jun 21, 2007 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 2999

shyamrai wrote:Yes sir, but I am not using the Job sequence. I am using the server job and ....

O yea, thats right.
Anywho, write a batch job to do your processing then. You will have greater control then.
by DSguru2B
Thu Jun 21, 2007 7:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage Reject Link in Datastage
Replies: 5
Views: 8814

Ok. Then it works like other enterprise stages. Great. But I dont see that in the OP's design. The main issue here is, that RohanSharma needs to explain how he designed the job to handle rejects.
by DSguru2B
Wed Jun 20, 2007 1:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 2999

You need to design your sequence that way then. Stick in an exception handler connected to a terminator activity. Do not handle the scenario in which the job finishes with warnings, in the conditional trigger. This way if a job finishes with warnings, the control will go to the execption handler whi...
by DSguru2B
Wed Jun 20, 2007 1:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 2999

The last zero in your parameters is the warning limit. Set that to 1.
by DSguru2B
Wed Jun 20, 2007 12:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compile error in transformer
Replies: 11
Views: 3846

Also try to make your job name small. Dont forget smaller link names. Try to split the job into two jobs. Try to play around with these.
by DSguru2B
Wed Jun 20, 2007 11:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 2999

You can set the warnining limit in the UtilityRunJob() to 1. So that your sequence job inherits this property and passes it down to the children jobs. This way, even if there is a single warning, your jobs will abort. But I am not sure about the entire design, but then again, thats not the topic of ...
by DSguru2B
Wed Jun 20, 2007 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Before SQL / After SQL
Replies: 4
Views: 1055

It will be executed once per job. Before it actually starts executing the main sql thats in the sql tab. This is for the Before sql. The after sql will be executed once the stage has finished processing all the rows.
by DSguru2B
Wed Jun 20, 2007 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Before SQL / After SQL
Replies: 4
Views: 1055

It will be once, before executing the main sql body.
by DSguru2B
Wed Jun 20, 2007 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Text file delimiter - space + TAB + space
Replies: 8
Views: 2692

Re: thanks but...

urma wrote:
do you have another suggestion?

Yes, revert back, with full force, on such restrictions. You are sitting on a unix box and cannot utilize the power of unix utilities. I would feel crippled.
by DSguru2B
Wed Jun 20, 2007 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage Reject Link in Datastage
Replies: 5
Views: 8814

Sachin: Your method is valid in a server job and not in a parallel job.
RohanSharma: I do not see a reject link coming out of an ODBC stage? How exactly are you rejecting records? Does ODBC stage even support reject links :roll: ?
by DSguru2B
Wed Jun 20, 2007 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding most recent effectitive salary date
Replies: 9
Views: 2253

chulett wrote:Huh... I guess our definitions of the phrase 'most recent' differ. :?
:lol:
by DSguru2B
Wed Jun 20, 2007 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compile error in transformer
Replies: 11
Views: 3846

Make the name of your stages shorter.
by DSguru2B
Wed Jun 20, 2007 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding most recent effectitive salary date
Replies: 9
Views: 2253

Do a group by on Id and Salary and get the MIN() of date.
by DSguru2B
Wed Jun 20, 2007 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: folding a single record into multiple records at fixed width
Replies: 24
Views: 7200

Thats good thinking guys. Split it at the source and then add a line terminator after every record to pivot it.