Search found 53125 matches

by ray.wurlod
Mon May 05, 2008 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is new in DataStage 7.5.3
Replies: 13
Views: 63643

Not if you don't want to be. Older versions (up to three back, if I recall correctly) are also supported. So 7.5, 7.1 and 7.0 should still be supported.
by ray.wurlod
Mon May 05, 2008 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Single char to multiple chars
Replies: 9
Views: 3156

There is a PX version of Ereplace() which a Search of the forum should find for you.
by ray.wurlod
Mon May 05, 2008 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert DS jobs from Windows to Linux
Replies: 1
Views: 683

Most folks use search and replace on the export file.
by ray.wurlod
Mon May 05, 2008 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: enabling remote execution of parallel jobs
Replies: 3
Views: 958

You simply can not run the jobs entirely on the database server. At the very least the jobs must be started from a server on which DataStage is installed. You will also need a DataStage license for the other operating system, which will make it quite an expensive proposition.
by ray.wurlod
Mon May 05, 2008 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts everytime unless debugger is running
Replies: 7
Views: 2300

What does the Transformer do? In particular does it invoke any routines? Have you re-compiled the job?

And, most importantly, what has changed on the system since the job ran successfully?
by ray.wurlod
Mon May 05, 2008 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wait for file activity issues
Replies: 1
Views: 1028

I don't believe there is any way to suppress this warning with the Wait For File stage. I usually work around it by creating a Routine that performs the same task.

You might replace the Failure trigger with an Otherwise trigger (assuming that you have an OK trigger).
by ray.wurlod
Mon May 05, 2008 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage ETL JOB remains in Processing state for hours
Replies: 2
Views: 909

In the Debugger use "Step to Next Link" to follow the progress of a row through the job. The row is only in context if the active stage to which its link is connected is currently executing.
by ray.wurlod
Mon May 05, 2008 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute after job subroutine in Transformer
Replies: 4
Views: 1001

Your only possibility is to store the value somewhere (for example in the job's user status area or in a system variable such as @USER0) while the stage is running, and to retrieve it from there. The links are not opened until the before-stage subroutine returns, and the links are closed before the ...
by ray.wurlod
Mon May 05, 2008 3:43 pm
Forum: General
Topic: How can we move the repository for Release 8.0?
Replies: 10
Views: 3860

Welcome aboard.

This would be a good question to put to your support provider. Version 8 is still sufficiently new that there's not a great deal of expertise "out here" for the, shall we say, less well-documented techniques.
by ray.wurlod
Mon May 05, 2008 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Reading a Fixed Width File
Replies: 10
Views: 3347

Use Char, not VarChar, and specify the display widths.

Code: Select all

fname  Char(4)     width 4
mark   Integer     width 4
id     Char(1)     width 1
lname  Char(4)     width 4
by ray.wurlod
Mon May 05, 2008 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job status codes
Replies: 3
Views: 1792

That list is, in fact, ALL the job status codes. The mnemonics (constants) are defined in the header file JOBCONTROL.H in the DSINCLUDE directory.
by ray.wurlod
Mon May 05, 2008 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to generate a node map
Replies: 18
Views: 14660

Does your configuration file include a default node pool called ""?
by ray.wurlod
Mon May 05, 2008 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: thousand separetor in parallel
Replies: 3
Views: 1196

OK, the first step (probably in a stage variable) is to convert that to a string. Then you can, based on the length of the string, determine how many thousands delimiters to put in. For example (extend this as far as you need) If Len(svString) <= 3 Then svString Else If Len(svString)...
by ray.wurlod
Mon May 05, 2008 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Differences between Datasatge 7.5 and Datastage 8 versions
Replies: 4
Views: 1222

Only if you are using a suitable radix (number base), such as decimal (base 10) in which to perform the subtraction. :)
by ray.wurlod
Mon May 05, 2008 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute after job subroutine in Transformer
Replies: 4
Views: 1001

There is no legal way to read a column value in an after-stage subroutine. The column has gone by the time the after-stage subroutine is being executed. The routine is not invoked until all links to and from the stage have been closed.