Search found 53125 matches

by ray.wurlod
Sat Mar 10, 2007 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

It's not a DataStage issue.

Your number, with thousands delimiters, is 322,665,901,919,233,341,505,776,723,281,119,128,249

This makes it clear that it has 39 digits.

You can simply NOT store this as NUMBER(38), which can accommodate a maximum of 38 digits.

You MUST use a larger data type.
by ray.wurlod
Sat Mar 10, 2007 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change decimal default value [38,10] to higher value
Replies: 21
Views: 9313

Stop trying to put a 39-digit number into a field with precision 38.
by ray.wurlod
Sat Mar 10, 2007 8:41 am
Forum: General
Topic: Calculating top vaues
Replies: 33
Views: 8467

Of course you CAN use SQL - via an ODBC driver for text file. Just don't expect it to be fast. But for sufficiently small text files performance may be acceptable.
by ray.wurlod
Sat Mar 10, 2007 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Job Design
Replies: 19
Views: 4129

The newer ORAOCIBL stage doesn't exist in version 4.x, however. To quote Mr Duke, the ORABULK stage serks!
by ray.wurlod
Sat Mar 10, 2007 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: perrformance issues using transformer
Replies: 5
Views: 2180

The transition point is version 7.1; it's in this version that IBM claim to have enhanced performance of the Transformer stage. So, how good is your C++ compared to theirs? You can view the generated C++ if you wish; it's in a subdirectory called RT_SCnnnn, where nnnn is the job number. (RT_SC = run...
by ray.wurlod
Fri Mar 09, 2007 9:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: When OSH code gets generated?
Replies: 2
Views: 970

Compiling a parallel job generates osh and, possibly C++ source code that is compiled and linked and callable at run time. When the job starts the generated OSH and the currently selected configuration file are used as input to a set of execution instructions called the "score", which contains the o...
by ray.wurlod
Fri Mar 09, 2007 9:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dslockd issue
Replies: 18
Views: 4484

A zombie doesn't need to have any Repository locks, neither does a background process. It can simply be unable to die because it is unable to notify its (killed) parent.
by ray.wurlod
Fri Mar 09, 2007 9:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row as column
Replies: 9
Views: 1784

As I understand it, the output should appear as

Code: Select all

Target   Min   Max   UOM   Comment
   10     20    30    mm
  101    201   301    mm
from that input.
by ray.wurlod
Fri Mar 09, 2007 9:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting File size
Replies: 7
Views: 1689

Get them to send two files - the data file then another, possibly empty file. Wait for the second file, then process the first. Given that they don't send the second file till after they've sent the first, you can be confident that all of the first file has been received when the second file arrives...
by ray.wurlod
Fri Mar 09, 2007 5:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Control Process Failed
Replies: 61
Views: 15996

What's different between DEV and UAT?
by ray.wurlod
Fri Mar 09, 2007 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bind Variable issues
Replies: 11
Views: 3690

<Deep Thought>
FORTY TWO
</Deep Thought>
by ray.wurlod
Fri Mar 09, 2007 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Log file for DSEE job
Replies: 5
Views: 1205

Through Director I wouldn't bother, because I know that DataStage keeps all these statistics in the Repository database from which I can query them (using Director) any time I please.

Where required, I run a job that archives the logs prior to purging them.
by ray.wurlod
Fri Mar 09, 2007 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem processing the Sequential File
Replies: 3
Views: 762

Try it with Final Delimiter = End

Can you advise the format settings from the server job Sequential File stage that writes this file?
by ray.wurlod
Fri Mar 09, 2007 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute command stage with password
Replies: 7
Views: 1412

Create a shell script that acts as a wrapper to sqlplus and picks up the password from an environment variable that you've set elsewhere earlier in the same process. You'll need a "here script" within the shell script to respond to the sqlplus "Password:" prompt.
by ray.wurlod
Fri Mar 09, 2007 4:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call to input link returned numeric error code: 19
Replies: 7
Views: 5027

DSP.Close is one of theirs.
COMMON size mismatch in subroutine "DSP.Close". means that there's a bug, an incompatibility, between their modules.
"They" need to fix it.