Search found 53125 matches

by ray.wurlod
Fri Dec 12, 2008 3:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Control Error
Replies: 11
Views: 2633

If I were the programmer I would not be at all happy with a specification like "extract some information". What I'm trying to get you to do is to create a proper technical specification against which cogent advice as to coding may be given.
by ray.wurlod
Fri Dec 12, 2008 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String Handling
Replies: 17
Views: 3912

You can set the quote character in the Format properties of a Sequential File stage. (Technically it's in the link properties.)
by ray.wurlod
Thu Dec 11, 2008 11:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use Xml Input in parallel job..
Replies: 1
Views: 845

Welcome aboard.

Search is your friend.

There are several solutions. Most common seems to be the External Source stage.
by ray.wurlod
Thu Dec 11, 2008 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Control Error
Replies: 11
Views: 2633

Write out IN ENGLISH what you want to do.

It is not clear from your code (a) because it is not indented (use Code tags) and (b) because you don't appear to have any clear idea of precisely what you want to accomplish.
by ray.wurlod
Thu Dec 11, 2008 11:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: List of all Px Stages
Replies: 8
Views: 2285

Administrator client Command window or within a dssh shell in the project directory on the DataStage server machine.
by ray.wurlod
Thu Dec 11, 2008 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture performance statistics of a job
Replies: 7
Views: 2381

Use a redirection operator to generate the report to wherever you require. Don't forget to redirect stderr to the same file.
by ray.wurlod
Thu Dec 11, 2008 4:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext() - timeout waiting for mutex
Replies: 9
Views: 5681

RCP is not the same as row buffering.

With parallel jobs you ALWAYS get row buffering, and lots of environment variables to let you tune that mechanism.

Here we're in the server jobs forum.
by ray.wurlod
Thu Dec 11, 2008 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job monitor does not show multiply
Replies: 6
Views: 1741

Separate instances are not shown by default - you must expand the tree view.
by ray.wurlod
Thu Dec 11, 2008 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Control Error
Replies: 11
Views: 2633

Try detaching hJob1 when you're done with that job, so that you don't get a job locked situation.

Why are you executing the same job 18 times?
by ray.wurlod
Thu Dec 11, 2008 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: List of all Px Stages
Replies: 8
Views: 2285

Code: Select all

SELECT @ID FROM DS_STAGETYPES WHERE @ID NOT LIKE '\\%';
by ray.wurlod
Thu Dec 11, 2008 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Start a multiple instance job N times simultaneously
Replies: 4
Views: 1126

You could make a copy of UtilityRunJob and modify it so that it does not wait for the job to finish. Of course, you then relinquish control, and can not readily throttle demand on the server. Multiple, simultaneous execution of multi-instance parallel jobs, eh?? Of course, everyone knows that a Data...
by ray.wurlod
Thu Dec 11, 2008 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TCL Commands
Replies: 1
Views: 1866

DataStage SQL requires the terminating semi-colon.
Also you must be working in the project directory.

Code: Select all

cd $projectdir
%DSHOME%\bin\dssh "SELECT * FROM DS_JOBS;" > file4.txt
by ray.wurlod
Thu Dec 11, 2008 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext() - timeout waiting for mutex
Replies: 9
Views: 5681

Is it always the same stage that generates the timeout?
by ray.wurlod
Thu Dec 11, 2008 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help
Replies: 3
Views: 1388

Welcome aboard. Do try to come up with meaningful subject lines; it aids future searchers.

Please advise how the data are encoded in the remote file and what your DataStage NLS setting in the FTP stage is.
by ray.wurlod
Thu Dec 11, 2008 2:09 pm
Forum: General
Topic: Convert Function - Mulitple Characters as a set for replace
Replies: 7
Views: 2463

Convert works one character at a time.

That it worked for you was pure luck - all you got was each "X" converted to "A". Therefore "XX" would have been converted to "AA".