Search found 42189 matches

by chulett
Wed Aug 25, 2010 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loop Activity- Return status of each loop
Replies: 8
Views: 3857

There's no concept of a globally scoped variable in Sequence jobs you can update while the job runs. You may be able to build another job that takes in your new UserStatus value and appends it to its current UserStatus, thus concatenating them there but I'm not sure a job can query its own UserStatu...
by chulett
Wed Aug 25, 2010 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input parameter values during runtime
Replies: 3
Views: 1483

As noted, you need to escape the quotes inside your parameter value so they are not stripped by DataStage.
by chulett
Wed Aug 25, 2010 6:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: after job subroutine to reset a failed independent job
Replies: 10
Views: 5221

The resolution is (IMHO) spelled out pretty clearly in the answers here. If you need some clarification, let us know what is unclear. If you have an actual problem to solve, please start a new post and give us all the particulars of your issue.
by chulett
Wed Aug 25, 2010 6:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group outputs empty string value
Replies: 4
Views: 1584

Re: Aggregator group outputs empty string value

hello, you know my habit of not opening new posts since similar problems are already reported in here. <snip> if you have any advice I would gladly take it :) First bit of advice? Break this habit. Similar != same, so please start a new post and then reference the old post if you feel it would be h...
by chulett
Wed Aug 25, 2010 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading from excel
Replies: 5
Views: 2362

Re: Reading from excel

HariK wrote:if the excel file has more than one sheet than converting to CSV will not work.
Sure it will, it just means you end up with more than one csv file.
by chulett
Wed Aug 25, 2010 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source type dfloat to result type int32
Replies: 7
Views: 12609

Somewhere there is a large number mapped to a smaller number and it won't all fit. Typically this happens with Aggregator output which, if not explicitly handled, will output its results in dfloat format.
by chulett
Wed Aug 25, 2010 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can anybody tell me the logic
Replies: 3
Views: 1268

The Pivot stage is the correct answer. Tell us how you have it set up and what output you are getting.
by chulett
Wed Aug 25, 2010 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incomplete column value??
Replies: 6
Views: 3575

It means that any 'Incomplete Column' handling must be done from whatever column you start with to the end. In other words, you can't have 10 columns and set this on 7 only, you have to set it for 7-10.
by chulett
Wed Aug 25, 2010 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing rejected rows in Oracle
Replies: 12
Views: 3821

Make sure the link order is correct - that your Reject link is last - and try removing the constraint. Just let the fact that it is marked as a Reject row do the work and see if that helps.
by chulett
Tue Aug 24, 2010 7:46 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Calling a webservice
Replies: 11
Views: 8116

Please stop with the exclamation marks in your subjects, I don't need the extra work running around behind you and cleaning them up.

Thanks.
by chulett
Tue Aug 24, 2010 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: In DataStage have any limitation for Job Name?
Replies: 7
Views: 4074

Your problem isn't the length of the job name (per se) but the length of the trace file generated from that job name - it looks to be "too long" for whatever operating system you are using.
by chulett
Tue Aug 24, 2010 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run time error in DataStage Designer
Replies: 3
Views: 3612

Well, then... a reinstallation if the reboot doesn't help. :wink:
by chulett
Tue Aug 24, 2010 7:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing rejected rows in Oracle
Replies: 12
Views: 3821

There's no MODIFY stage in a Server job... that functionality would need to be done in a Transformer.
by chulett
Tue Aug 24, 2010 11:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle to Oracle performance
Replies: 7
Views: 3970

A number of years ago, Ken Bland posted several items here about landing data, including this thread. If you search for "pressure" with "kcbland" as the author, you'll also find a number of discussions on the concept of "back-pressure" and why landing between the extrac...
by chulett
Tue Aug 24, 2010 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Frequent scheduling of Server Job
Replies: 3
Views: 1783

You do understand that DataStage has no 'native scheduling facility' and what it talks to is the Windows scheduler, yes? So the two approaches aren't really any different. Also, can you guarantee that your job never runs longer than five minutes? What I've built in the past for situations like this ...