Search found 53125 matches

by ray.wurlod
Thu Aug 23, 2007 4:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Valiadete date field
Replies: 13
Views: 3058

Use the function to determine that the data is valid, and

Code: Select all

InLink.TheString Matches "2N'/'2N'/'4N"
to determine that it matches your required pattern.
by ray.wurlod
Thu Aug 23, 2007 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator
Replies: 2
Views: 679

Almost certainly it was that the data were not sorted as asserted.

When you specify "Sort" on the input of an Aggregator stage you are telling DataStage that the data are already sorted, not that you require the data to be sorted.
by ray.wurlod
Thu Aug 23, 2007 4:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Problem
Replies: 4
Views: 1031

A hashed file is a database table in the "DataStage database". It is local to the application, and employs a very fast mechanism for key-based lookups. Access it using a Hashed File stage and that very fast mechanism can be even faster, because you can cache the table in memory. Simply populate the ...
by ray.wurlod
Thu Aug 23, 2007 4:10 pm
Forum: IBM QualityStage
Topic: ERROR: 0012 incomplete record found on file
Replies: 3
Views: 1677

That, of course, is your call. I'm sorry you feel this way. Premium membership supports the bandwidth charges needed to keep this site running; you can link to a description of it from the home page. I guess you'll have to use your support provider, whom you pay maintenance, to provide support.
by ray.wurlod
Thu Aug 23, 2007 4:06 pm
Forum: Enhancement Wish List
Topic: Job Parameter File.
Replies: 2
Views: 1799

Even if they did, you'd complain that you don't like the format of the parameter file they would require you to use. My guess is that this is one of the reasons the functionality is not available "out of the box".
by ray.wurlod
Thu Aug 23, 2007 1:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Problem
Replies: 4
Views: 1031

Welcome aboard. What do you need to achive with the lookup - merely a test for existence, or to return some columns? Are the two sources in the same Oracle instance? If so, why not perform a join (inner or left outer as appropriate) in your source stage? This will benefit from indexing on the joinin...
by ray.wurlod
Thu Aug 23, 2007 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitions and Nodes configuration problem
Replies: 16
Views: 5033

Auto puts:
    round robin except as below

    Entire on reference inputs to Lookup stage

    Hash on inputs to Join and Merge stage types
by ray.wurlod
Thu Aug 23, 2007 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional execution of next job in sequence
Replies: 22
Views: 5767

This is NOT object programming. It is procedural programming. There is no place for a New declaration in DataStage BASIC. The correct syntax is: hJob = DSAttachJob("MyJobName", DSJ.ERRWARN) * Test whether attach was successful Name = DSGetJobInfo(hJob, DSJ.JOBNAME) If Name ...
by ray.wurlod
Thu Aug 23, 2007 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: last calendar of month.
Replies: 7
Views: 2091

... unless the granularity is too coarse!
by ray.wurlod
Thu Aug 23, 2007 12:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get Chinese Character from SQL Server 2005?
Replies: 3
Views: 2007

Someone else will need to address this question; I am unfamiliar with the Oracle nomenclature. But it looks like your thoughts are on the right track.
by ray.wurlod
Thu Aug 23, 2007 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between hash & hashed file
Replies: 3
Views: 1012

Yay!! :applause:

"Hash" file is just plain wrong. Unfortunately, it's wrong even in some of the vendor's documentation.
by ray.wurlod
Thu Aug 23, 2007 12:07 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Problem using SCP command in Execute command Stage
Replies: 2
Views: 2571

Welcome aboard.
Rashmi, this forum is for questions relating to DataStage TX, not to DataStage parallel jobs. Please post your questions in an appropriate forum. Otherwise you risk getting replies about using TX maps and cards, which will serve only to confuse you.
by ray.wurlod
Wed Aug 22, 2007 9:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Jobs failure due to Broken Pipe
Replies: 5
Views: 15316

Probably that Load/Append finishes faster, giving less opportunity for the pipe to break (or to be broken).
by ray.wurlod
Wed Aug 22, 2007 9:01 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI introduction
Replies: 8
Views: 5268

Most of the web clients I've encountered throw (small) XML documents at the web service. Hence my approach with the XML stages. Beware that this was a highly simplified discussion - obviously there is more detail at each step, and - as they say - the devil is in the details. A parallel job can be se...
by ray.wurlod
Wed Aug 22, 2007 5:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in look up when it is long string
Replies: 8
Views: 2145

For a start 2500 would imply GROUP.SIZE 2.

The impact can be huge - can even preclude use of dynamic hashed files!

Be very, very careful.