Search found 53125 matches

by ray.wurlod
Mon Sep 25, 2006 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSWaitForJob
Replies: 6
Views: 1676

DSWaitForJob only waits for a running job to finish. If the job is not running, DSWaitForJob returns immediately. You need a different strategy.
by ray.wurlod
Mon Sep 25, 2006 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_STATUSnnn files
Replies: 3
Views: 1341

There's little you can do - most of the Repostory tables are implemented using hashed files. All you can do is not to have too many jobs running at the same time (until T30FILE is increased).
by ray.wurlod
Mon Sep 25, 2006 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036: illegal variable name/number
Replies: 14
Views: 7065

Are you 100% certain that the metadata used in your job (on the output link from the OCI stage) matches that of the Oracle table? In particular, are you trying to select a NUMBER from a VARCHAR2 column?
by ray.wurlod
Mon Sep 25, 2006 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job access
Replies: 5
Views: 1813

LIST.READU is available on all platforms. It can also be executed from the operating system as list_readu (the executable is in $DSHOME/bin). On UNIX, you can pipe the output of list_readu through grep to isolate the lock entry for the job itself.

Code: Select all

list_readu | grep jobname
by ray.wurlod
Mon Sep 25, 2006 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Starting the DS Server engine
Replies: 4
Views: 1433

The uv -admin command executes $DSHOME/sample/ds.rc (on most systems the entries in /etc/rc2.d and so on are symbolic links to the script in sample). The difference is that uv -admin has more options available, which go off and do other things, for example uv -admin -version or uv -admin -info comma...
by ray.wurlod
Mon Sep 25, 2006 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Buy AIX server for Datastage Dev, Test and Prod environment
Replies: 5
Views: 1392

In a word: robustness.

Windows needs to be re-booted too frequently (in my opinion) to be considered in a production environment. UNIX rarely needs to be re-booted - primarily after upgrading of hardware or operating system.
by ray.wurlod
Mon Sep 25, 2006 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting lists of jobs in Sequence
Replies: 5
Views: 1144

There are other solutions too. Searching the site will find them.
by ray.wurlod
Mon Sep 25, 2006 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing/Reading Outlook .pst files in DataStage
Replies: 4
Views: 1575

Whatever you did to export the .PST file, wrap that in a BAT file and execute it from DataStage control (for example an Execute Command activity in a job sequence, or a before-job subroutine).
by ray.wurlod
Mon Sep 25, 2006 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic:
Replies: 7
Views: 2564

I think the best approach is pattern matching here. InLink.FirstCol Matches "0X'.IR'" : @VM : "0X'.P'" : @VM : "0X'.UN'" For the second, Count() is probably the most efficient. Index() is valid too, as is pattern matching. InLink.SecondColumn Matches "0X'EXCH'0X&qu...
by ray.wurlod
Mon Sep 25, 2006 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: @INROWNUM ?
Replies: 23
Views: 14823

Can you post precisely what the input file looks like, and the exact derivations of the stage variables and output columns used?

I have been unable to reproduce this on version 7.5.1 on Red Hat Linux.
by ray.wurlod
Mon Sep 25, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "$DSP.Close" is not in the CATALOG
Replies: 9
Views: 2773

Have all these executions used the same user ID? There is a "permission denied" message emitted - these don't just come and go.
by ray.wurlod
Mon Sep 25, 2006 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Sort Stage
Replies: 3
Views: 1279

Tell us how you've specified the sorting. It's this that the stage is complaining about. Post the generated OSH related to the Sort stage. Etiquette Note Don't push. This is an all-volunteer site; folks post as and when they can. The hour between your two posts were in the middle of the night where ...
by ray.wurlod
Mon Sep 25, 2006 3:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance implications of using BASIC Transformer in Paral
Replies: 2
Views: 882

The penalty is related to the need to translate data values from strongly typed in the C environment to untyped in the BASIC environment when invoking the BASIC run machine to execute the BASIC Transformer code, then the reverse translation when returning the row from that stage back into the C envi...
by ray.wurlod
Mon Sep 25, 2006 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tricky Question
Replies: 4
Views: 1672

Similarly in DataStage. Your single output column is derived as

Code: Select all

If @INROWNUM = 1 Then InLink.ColA Else InLink.ColB
by ray.wurlod
Mon Sep 25, 2006 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Job to Parallel Job Basic string conversion
Replies: 4
Views: 1603

I think you want to convert "/" to "-" but you've asked to convert "-" to "/". But why not use SYSDATE ?

Convert() is valid as a function in a parallel Transformer stage.