Search found 53125 matches

by ray.wurlod
Mon Sep 19, 2011 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help In merging the Files
Replies: 2
Views: 971

Do you know what commands you might use in such a script, or are you relying upon DSXchange to fill a gap in your knowledge of operating system commands?

This problem can be solved with a single command pipeline - you don't even need a script!
by ray.wurlod
Mon Sep 19, 2011 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: single lookup or multiple lookup
Replies: 16
Views: 4182

5:14pm and 8:10pm in my time zone.
Do you require that we be on line 24x7? How much would you be prepared to pay for that?!!
by ray.wurlod
Mon Sep 19, 2011 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help needed in generating logic
Replies: 5
Views: 1424

Write the mapping specification for each output column in English (or use FastTrack if you have it).

It's not clear from your examples how each output column is derived from the inputs.

In any case you should learn how to create/use mapping specifications.
by ray.wurlod
Mon Sep 19, 2011 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CSV
Replies: 9
Views: 2291

Server jobs are much more "sensible" (less militant) about handling data like this.

Or you can use a server Sequential File stage in a server Shared Container in a parallel job to leverage the same flexibility.
by ray.wurlod
Mon Sep 19, 2011 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help needed in Datastage Parallel Job implementation Logic
Replies: 1
Views: 1185

Operate in sequential mode. Generate the line number. Accumulate your totals in stage variables in a Transformer stage. Generate a group number on the output, keep the line number, and use 0 as the header line number. Output header and reset totals once Mod(line_number,100) is 0. Funnel header and d...
by ray.wurlod
Mon Sep 19, 2011 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FieldToProp: Internal error - Bad number of subobjects
Replies: 10
Views: 4144

In version 7 it might be called simply fixtool. In any case, you've proven that DS_ROUTINES is not structurally corrupted. That isolates the problem to logical corruption in one (at least) of the records in that table. Can you identify the particuar routine that throws the error?
by ray.wurlod
Mon Sep 19, 2011 3:23 pm
Forum: General
Topic: Is there any way I will get job Sequence deatils from XMETA
Replies: 2
Views: 924

You probably can use XMETA, but will have to work out the structure yourself. You can also get this information from DS_JOBOBJECTS table in the local project repository.
by ray.wurlod
Mon Sep 19, 2011 3:20 pm
Forum: General
Topic: Unable to Create a Project
Replies: 31
Views: 11333

NEVER create a project in /tmp !

The location pathname must be that of a directory that does not exist, but whose parent directory does exist and to which you have rwx permission.
by ray.wurlod
Mon Sep 19, 2011 3:14 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Java class For SOAP 1.2
Replies: 3
Views: 2702

What "SOAP version 1.2 problem" would that be?
by ray.wurlod
Mon Sep 19, 2011 12:56 am
Forum: General
Topic: How to access parameters passed from script in DS Job.
Replies: 5
Views: 1233

The first question is easily answered, yes. Use shell variables (such as $1, $2) to access the command line arguments and use these in the -param options of the dsjob command used to request the job run ( for example -param jpEndDate=$1 ). The meaning of your question about creating a table is not c...
by ray.wurlod
Sun Sep 18, 2011 11:44 pm
Forum: General
Topic: DS Auditing
Replies: 4
Views: 1383

Not out-of-the-box through to version "next" (probably 8.7).

It's easy enough to create, provided you are familiar with the "UniVerse-like" structure of DataStage projects.
by ray.wurlod
Fri Sep 16, 2011 7:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FieldToProp: Internal error - Bad number of subobjects
Replies: 10
Views: 4144

DS.REINDEX only rebuilds the indices - it does not touch the underlying table. You can verify whether the table itself is corrupted using various tools, including UVFIXFILE and dsfixtool.
by ray.wurlod
Fri Sep 16, 2011 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to create zoned and packed decimals
Replies: 2
Views: 873

There's already material on DSXchange about that. Try searching,
by ray.wurlod
Fri Sep 16, 2011 3:51 pm
Forum: General
Topic: updates in DataStage Administrator 7.5
Replies: 2
Views: 709

In version 7.x the answer is No. In version 8.x the answer is Yes.
by ray.wurlod
Fri Sep 16, 2011 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job abort during AGG OR SORT
Replies: 24
Views: 6267

You will never get any rows output from a Sort stage until all the input rows have been consumed. This is common sense - it does not know where the final row will be in the sorted order until it has been processed.