Search found 53125 matches

by ray.wurlod
Thu Jul 05, 2007 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSAddEnvVar
Replies: 4
Views: 1089

There's your first problem right there. From where do you plan to "capture" the values?
by ray.wurlod
Thu Jul 05, 2007 9:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling
Replies: 16
Views: 4485

edward_m wrote:Thanks..i have 97 nullable columns.So its hard for me to define '*' to each and every column based on their length.
Is there any alternative solution ??

Thanks in Advance..

No.

It's not hard. It's just tedious.
by ray.wurlod
Thu Jul 05, 2007 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Waiting for File
Replies: 6
Views: 2013

Look at the generated OSH. Unfortunately this IS how it works. Once first wait starts waiting, nothing happens till it returns. You'd have to "roll-your-own" to implement simultaneous waiting. This would not be difficult in a before-job subroutine or in a routine called from a Routine activity. The ...
by ray.wurlod
Thu Jul 05, 2007 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: When does DS issue RDBMS commits
Replies: 2
Views: 903

I seriously doubt you can have a "passive" stage with an input and an output in a parallel job. This would be a blocking operation - which would interfere with pipeline parallelism. These are banned in the parallel job environment - the output link would be treated (and painted) as a reject-handling...
by ray.wurlod
Thu Jul 05, 2007 9:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run a parallel job on pc( windows xp)
Replies: 2
Views: 1477

:!: Even inciting to crime is a criminal offence.
by ray.wurlod
Thu Jul 05, 2007 9:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can i move an PDF object into my oracle target
Replies: 6
Views: 2003

Stick it in a directory (which Oracle can access as an "external table" - Larry-speak for a directory).
by ray.wurlod
Thu Jul 05, 2007 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process id, how to find for a particular job
Replies: 10
Views: 3348

There are LOTS of processes. The player process PIDs can be logged by setting APT_PM_SHOW_PIDS environment variable.
by ray.wurlod
Thu Jul 05, 2007 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping in Buildop
Replies: 10
Views: 3488

You could have pre-read input port #1 into a static vector, as was suggested; you can then access this as often as you wish. For better performance, use a hash table rather than a vector - a bit more coding, but probably worth it.
by ray.wurlod
Thu Jul 05, 2007 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning - Sort Stage
Replies: 2
Views: 988

Please post how this issue was resolved, to aid future searchers.
by ray.wurlod
Thu Jul 05, 2007 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output file full Error
Replies: 4
Views: 2288

It might also be that the inode table for that particular file system is full, or that the file has reached 2GB and large file support is not enabled. Check with your UNIX administrator.
by ray.wurlod
Thu Jul 05, 2007 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TransformerError
Replies: 5
Views: 2216

Start by disabling operator combination, either at the stage level or at the job level ($APT_DISABLE_COMBINATION as a job parameter) to isolate the problemt to the actual stage that is generating it.

You may discover that the problem is not in the Transformer stage, in spite of your assumption.
by ray.wurlod
Thu Jul 05, 2007 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to capture error messages in DB2 API Stage
Replies: 7
Views: 8108

What part of Surya's code is unclear? It looks like quite an elegant solution.
by ray.wurlod
Thu Jul 05, 2007 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating 64 bit hash file
Replies: 23
Views: 5341

Does a VOC pointer exist for MyHashFileName ?

It's hashed file, by the way, not hash file.
by ray.wurlod
Thu Jul 05, 2007 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The DSJ.JOBELAPSED bug
Replies: 4
Views: 1162

It's a way of formatting to ensure leading zeroes. Look at the Fmt() function for possible values. Following an expression with a space and a format designator is another way in DataStage BASIC to achieve the same result. I could equivalently have written: Ans = Iconv(Fmt(NewYear,"R%4") : "-" : Fmt(...
by ray.wurlod
Thu Jul 05, 2007 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to create Dynamic Server job
Replies: 3
Views: 1095

Every server job is dynamic - it potentially processes a different number of rows each time it is run.

Plenty of documentation, with the occasional witty aside, is another way to achieve some form of dynamism.