Search found 42189 matches

by chulett
Thu Jul 02, 2009 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to store the Values in the Environment Variables
Replies: 19
Views: 4380

"Better" than the orignal method as it is easier to understand, simple to setup, is all in DataStage and actually works as an added bonus. :wink:

All this IMHO, of course.
by chulett
Thu Jul 02, 2009 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Stage in Parallel and Server
Replies: 10
Views: 5550

Data is skewed? Example, please. Is your problem just with the "123 Main St" field with the extra comma?
by chulett
Thu Jul 02, 2009 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: null replaced by "^"
Replies: 18
Views: 3426

No, what is posted in an "upcaret-oh" as in "^" followed by the letter O... note the difference in the zeroes posted next to them. And also note this is one character not two.
by chulett
Thu Jul 02, 2009 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date feild compare
Replies: 4
Views: 1428

My assumption was "it is ok" should really have been "is it ok?".
by chulett
Thu Jul 02, 2009 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset on 2nodes read with 4 nodes
Replies: 12
Views: 10925

So... you're saying a dataset created on two nodes can be read under a four node configuration? Interesting... honestly didn't think that would work.
by chulett
Thu Jul 02, 2009 8:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCI PLUG IN
Replies: 9
Views: 1753

True... but the alleged issue is the fact that it isn't even in the repository, so technically there would be nothing to add to the palette.
by chulett
Thu Jul 02, 2009 8:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage -Transformer
Replies: 19
Views: 7325

Ugh. You should have just said 'no' - this really needs to be done either by or under the direction of a very knowledgeable support person.
by chulett
Thu Jul 02, 2009 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date feild compare
Replies: 4
Views: 1428

Convert the date to a string in the same format, then you can compare. Or convert your string to a date first.
by chulett
Thu Jul 02, 2009 8:10 am
Forum: General
Topic: Transactional Loading in Datastage
Replies: 11
Views: 4831

The job must abort in order for any rollback to happen. Transaction Grouping is not the correct approach for this situation as it commits each 'group' of records as they are processed so individual groups can be rolled back on a failure..
by chulett
Thu Jul 02, 2009 8:05 am
Forum: General
Topic: Adding current Date with the file
Replies: 23
Views: 6147

Technically, 'move' is for moving a file from one drive letter / location to another and 'rename' just renames a file in place. With a UNIX background you might gravitate to 'move' but 'rename' would be more appropriate even if the other can be made to work.
by chulett
Thu Jul 02, 2009 7:44 am
Forum: General
Topic: Adding current Date with the file
Replies: 23
Views: 6147

First off, you need to do it after job not after stage. Secondly, you need a valid DOS command for the task - use rename rather than move. Get it working from a cmd prompt then add it to the job.
by chulett
Thu Jul 02, 2009 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCI PLUG IN
Replies: 9
Views: 1753

Did you specifically check in StageTypes \ Parallel \ Database?
by chulett
Thu Jul 02, 2009 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot process xml files using xml input stage.
Replies: 11
Views: 14041

Please post your 'new' XPath Expressions and a sample of the edited input XML, please.
by chulett
Thu Jul 02, 2009 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to store the Values in the Environment Variables
Replies: 19
Views: 4380

A much better solution would be to build a Sequence job with the Start/End Loop stages. Pass in the $Counter variable as a job parameter to use in your output filename. IMHO.