Search found 53125 matches

by ray.wurlod
Mon Apr 02, 2007 10:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: match like statement in lookup
Replies: 7
Views: 1825

Not at all. You can build your Lookup File Set on the five digit key, and allow duplicates. In the Lookup stage that uses it, allow multiple row returns from this reference input link.
by ray.wurlod
Mon Apr 02, 2007 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to split single row of input into 2 output rows
Replies: 1
Views: 813

You may as well use a server job - this whole thing is going to be sequential in any case.
Construct rows in a Transformer stage that contain the requisite data and newline character. Write to target sequential file as a single VarChar column with no field delimiters.
by ray.wurlod
Mon Apr 02, 2007 10:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File & data level validations
Replies: 8
Views: 2355

... are you the Moderator ?
by ray.wurlod
Mon Apr 02, 2007 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Component DSSE_ServerEngine problem
Replies: 9
Views: 3240

I think you'll need to contact your vendor/support provider over this one.
by ray.wurlod
Mon Apr 02, 2007 10:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Instance Tag Problem
Replies: 4
Views: 1923

What changes did you make in uvconfig?

Shouldn't you supply the new value with the -itag option? (That's from memory, but I recall that -itag ade is needed to reset to ade.)
by ray.wurlod
Mon Apr 02, 2007 10:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Jobs in two seperate Projects
Replies: 6
Views: 1142

Why does customer want two separate projects?

Why does the "solution" not involve scheduling the job in the two separate projects (for example from a third party scheduling tool) rather than forcing DataStage to do a job that it is not designed to do?
by ray.wurlod
Mon Apr 02, 2007 10:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal Error 39202
Replies: 2
Views: 1601

Error codes in the 39xxx range are related to the architecture underlying DS Objects through which the DataStage clients and their server-based agent processes communicate. The most comprehensive listing of these error codes is the Intercall Reference Guide, which can be downloaded from IBM. Note th...
by ray.wurlod
Mon Apr 02, 2007 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to list the Job names under the category?
Replies: 17
Views: 3972

Code: Select all

SELECT NAME FROM DS_JOBS WHERE CATEGORY = '<<Category name>>' AND NAME NOT LIKE '\\%';
by ray.wurlod
Mon Apr 02, 2007 10:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination of Stage- Could not get much from forum
Replies: 10
Views: 3124

The fact that you're using inter-process row buffering. A timeout is interpreted by the downstream stage to mean that something fatal has occurred upstream, so it also will abort. 100 sec is probably erring too much on the side of caution - an awful lot of rows could be processed in that time. If yo...
by ray.wurlod
Mon Apr 02, 2007 10:02 pm
Forum: General
Topic: Datastage ADministrator Commands
Replies: 13
Views: 10544

If you "know" that, your knowledge is five or more years out of date. It used to be UniVerse; it stopped being UniVerse with effect from version 6.0.
by ray.wurlod
Mon Apr 02, 2007 10:01 pm
Forum: General
Topic: Unable to use Job parameter in JobControl
Replies: 5
Views: 2203

DSJ.ME as the job handle is expressly forbidden to DSAttachJob() function.
by ray.wurlod
Mon Apr 02, 2007 12:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to specify a XML file in stage
Replies: 2
Views: 957

Start by reading the manual that covers these stage types (XMLPACK_20_Designer.pdf). The descriptions therein are quite easy to follow.
by ray.wurlod
Mon Apr 02, 2007 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Determine the month difference between 2 dates
Replies: 5
Views: 4966

Nice logic. Would have been improved by use of the correct function names, such as MonthFromDate() and YearFromDate() in the Transformer stage. Also, ought you not to compare MonthDayFromDate() values to determine A or B approach, rather than the actual dates?
by ray.wurlod
Mon Apr 02, 2007 12:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash Lookups and Transformers
Replies: 5
Views: 1098

It will still be slow unless the column(s) named in the WHERE clause are indexed.