Search found 53125 matches

by ray.wurlod
Tue Mar 04, 2008 6:03 am
Forum: General
Topic: Which one is efficient join or merge or lookup stage
Replies: 3
Views: 1349

Welcome aboard.

That sounds very much like an interview question. How do you define efficiency? Each stage type has its own particular purpose - that is why there are three of them, not one. You choose the appropriate tool for the particular task.
by ray.wurlod
Tue Mar 04, 2008 6:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: newline character
Replies: 13
Views: 3424

Please mark the thread as resolved.
by ray.wurlod
Tue Mar 04, 2008 2:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence job in loop getting aborted
Replies: 12
Views: 3224

Your increment is one second. Therefore, the second iteration of the loop will fail to start the job if it hasn't finished within that second. Further, if the first iteration of the job hasn't finished within one minute, it will throw a -14 error (or, possibly, abort with "job not in a runnable stat...
by ray.wurlod
Tue Mar 04, 2008 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TeraData Enterprise Stage Problem
Replies: 6
Views: 3300

Can you please post the entire error message, so we can discern whether these are Teradata blocks or DataStage transport blocks?
by ray.wurlod
Tue Mar 04, 2008 2:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: newline character
Replies: 13
Views: 3424

Create a stage variable, let's call it svNewLine. In Windows, of course, the line terminator is actually two characters (carriage return and line feed), so initialize the stage variable to Char(13):Char(10) Don't assign any new value to this stage variable during per-row processing. ...
by ray.wurlod
Tue Mar 04, 2008 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding content validation
Replies: 6
Views: 1442

Code: Select all

Field(InLink.TheString, "-", 1, 1)
by ray.wurlod
Mon Mar 03, 2008 9:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap Size errror in Transformer
Replies: 13
Views: 3971

Then please post the actual errors (not the ones from APT_CombinedOperatorController).

The score would be used to identify whether DataStage had inserted any tsort or buffer operators. Had it?
by ray.wurlod
Mon Mar 03, 2008 9:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generating flat file from xml file
Replies: 29
Views: 7547

The currently mapped drive's root is considered to be "/" for UNIX purposes*. Therefore, if the DataStage project is on D: drive, then /tmp in UNIX is D:\tmp in Windows. You may need to fudge things a little, using relative pathnames rather than unqualified pathnames, but "UNIX" commands like ls do ...
by ray.wurlod
Mon Mar 03, 2008 6:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generating flat file from xml file
Replies: 29
Views: 7547

Yes it would. 7.5x2 installs on top of MKS Toolkit, so you have the full gamut of UNIX commands available.
by ray.wurlod
Mon Mar 03, 2008 6:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can a single DB Connectn be used in multiple parallel jobs?
Replies: 8
Views: 1972

jmarutz wrote: you can't setup one connector with that information and use it in another job.

You can indeed. That is what the (new) Connector stage is for.
A Connector can, of course, use parameterized connectivity values.
by ray.wurlod
Mon Mar 03, 2008 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic File Name
Replies: 1
Views: 745

No. Job parameter values are read, and locked in, when the job starts.

Use the "Type 19 hashed file" solution in your other thread.
by ray.wurlod
Mon Mar 03, 2008 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rows into seperate files.
Replies: 4
Views: 972

A Type 19 "hashed" file is, under the covers, a directory. Its keys, therefore, become file names in that directory. The non-key fields become lines in those files.
by ray.wurlod
Mon Mar 03, 2008 6:25 pm
Forum: General
Topic: Do Informatica skills translate to Datastage skills?
Replies: 14
Views: 5945

You've got it. Look also for traits such as attention to detail, accuracy, initiative and the ability to complete tasks with minimum supervision (but willingness to seek clarification in cases of uncertainty rather than ploughing ahead).
by ray.wurlod
Mon Mar 03, 2008 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading SAP data through DataStage
Replies: 15
Views: 9949

Let's try to get one thing clear from the outset - by "loading SAP data" do you mean loading data from SAP into DataStage, or loading data from DataStage into SAP?

Should have asked this question earlier.

There are plug-in stages (and other techniques) for each operation.
by ray.wurlod
Mon Mar 03, 2008 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ with high load
Replies: 3
Views: 866

You need to keep track in DataStage of where you got up to. It would be the same for any source - MQ is not part of it. Of course, if you were doing destructive reads from the queue, then you can just pick up where you left off (except that the read that caused the abort may have been lost if you ha...