Search found 42189 matches

by chulett
Mon Aug 06, 2012 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to handle missing tags xml file ?
Replies: 7
Views: 3037

What exact 8.x version do you have and are you current on fixpacks / patches / whatever? And for grins, please confirm that when nothing is missing from the file you do not get any errors.
by chulett
Mon Aug 06, 2012 11:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to handle missing tags xml file ?
Replies: 7
Views: 3037

So... you are saying that sometimes the elements in red may not exist in the file? I don't recall that being a problem. What exactly do you mean by it is "not able to parse incomplete file"? What error(s) are you getting?
by chulett
Mon Aug 06, 2012 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort Job when no files found (Extrnal Source Stage)
Replies: 5
Views: 2848

What is your runtime warning limit - any chance you could set it to 1?
by chulett
Mon Aug 06, 2012 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to find minimum value in a column using transformer?
Replies: 11
Views: 4336

ray.wurlod wrote:The solution is most easily wrought using a pair of stage variables
Seems to me that a single one would do the trick.
by chulett
Sun Aug 05, 2012 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture rejects of different schemas to a single table
Replies: 8
Views: 3514

Sure, I've seen them too. But more interested in what our friend Chetan.C has to say on the subject. It's their table after all. :wink:
by chulett
Sat Aug 04, 2012 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: whether sorting strings as numbers affects aggregator result
Replies: 4
Views: 1343

It doesn't need it to be sorted but it will appreciate it. :wink:

However, if you tell it that it is sorted you best not be wrong which is what your "out of sequence" error is saying.
by chulett
Sat Aug 04, 2012 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: whether sorting strings as numbers affects aggregator result
Replies: 4
Views: 1343

"Affect" as in change the result? No. It would mostly just be a waste of time as the Aggregator would need to undo all that work and "sort" the data itself back as a string.
by chulett
Sat Aug 04, 2012 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Stage
Replies: 7
Views: 2605

Probably, yes maybe. No clue if it would be faster / better / slower / worser or even if it would be all that different as there are too many variables at play. Honestly, the only way to properly answer the question would be to try both ways on your system with your data and see. And hopefully the v...
by chulett
Sat Aug 04, 2012 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture rejects of different schemas to a single table
Replies: 8
Views: 3514

I'd be curious what the purpose of the table would be. You've captured them all in one table... and then what? How you would leverage it would drive the design, it would seem to me.
by chulett
Fri Aug 03, 2012 6:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Query Band Implementation in DataStage-TD13 & D
Replies: 2
Views: 3513

Sorry, but is there a question here? Was this supposed to be part of your other post on this option? :?
by chulett
Fri Aug 03, 2012 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookUp stage doesn't match records
Replies: 4
Views: 2225

Typically that would be because the values do not in fact match. It could be as simple as extra spaces at the end of one value: trying to match "A" to "A " for example. I'd start with that.
by chulett
Fri Aug 03, 2012 1:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assign Value to Parameter within Job
Replies: 3
Views: 1870

The only way to "share" like that is to pass the value as a job parameter to all of the jobs. If this job is being run concurrently then it must be a multi-instance job and if that's the case you should be able to include the Invocation ID as part of the filename so there's no collision.
by chulett
Fri Aug 03, 2012 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I append a file today and overwrite it tomorrow?
Replies: 2
Views: 1153

Sounds like you need a "pre-process" to delete the file when the day changes, then the job can simply overwrite each time.
by chulett
Fri Aug 03, 2012 12:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: subquery from file in oci stage
Replies: 11
Views: 3757

As I said, pass it in as a job parameter. Use something in a Sequence job to read the file and craft the string that needs to be passed - a routine can be used or it may be as simple as an Execute Command stage that does a 'cat' and passes the result to the parameter. All depends on the structure of...