Search found 53125 matches

by ray.wurlod
Tue Jun 12, 2007 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim() with options L, T and B.
Replies: 20
Views: 4903

Not DataStaging today, so I can't check. First step would be to check whether it's documented as behaving the same way, or whether different control codes are used for familiar (from server jobs) functionality.
by ray.wurlod
Tue Jun 12, 2007 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation of Parallel Edition
Replies: 3
Views: 1158

I also suspect you're not running version 7.5x2 This is the only pre-8.0 version that supports running of parallel jobs on Windows platforms. It is not supported on Windows XP, but can be gotten to run there. You may also have difficulty compiling a parallel job that includes a parallel Transformer ...
by ray.wurlod
Tue Jun 12, 2007 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error fetching data using Oracle Enterprise stage
Replies: 4
Views: 3122

Now that you've copied the relevant section, there's no need to read the Parallel Job Developer's Guide !
:roll:
by ray.wurlod
Tue Jun 12, 2007 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exporting jobs using command line
Replies: 6
Views: 1740

The command is dsexport, which has a /JOB=name option. Search the documentation or the forum for full detail.

Note that exports are initiated from the client machine, and the export file resides on the client machine.
by ray.wurlod
Tue Jun 12, 2007 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple csv files to multiple csv files using single job
Replies: 3
Views: 965

Get a better requirement. There is no sane reason to restrict this design to a single job. The Sequential File stage can generate the actual file name read into an additional output column. You could use this to filter the rows, but you must already have in place in the job an output Sequential File...
by ray.wurlod
Tue Jun 12, 2007 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error -ODBC license file (IVVM.LIC or DDVM.LIC) not found
Replies: 13
Views: 4629

No. That's not required. (That is, I don't have that in place, and it's working fine for me.)

Premium membership is only a few cents per day, is definitely worth it, and helps to pay for the bandwidth costs of DSXchange.
by ray.wurlod
Tue Jun 12, 2007 3:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enable orachadmin
Replies: 4
Views: 1935

As well as havingAPT_ORCHHOME set and PATH including $APT_ORCHHOME/bin you must have APT_CONFIG_FILE set (pointing to the same configuration file that was used to create the Data Set), and your shared library search path must include $APT_ORCHHOME/lib.
by ray.wurlod
Tue Jun 12, 2007 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pattern matching
Replies: 3
Views: 1216

The job type is marked as server edition and it's posted in the server forum. On that basis, let's offer a server solution. It can't conveniently be done in the job itself. In the job sequence that controls the job use a Nested Condition activity to determine whether the file name (job parameter?) i...
by ray.wurlod
Tue Jun 12, 2007 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set/Get Stage variables?
Replies: 15
Views: 8164

No spaces around the comma.
by ray.wurlod
Tue Jun 12, 2007 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is trillium plugin supported in DS 7.5
Replies: 4
Views: 1742

If there is a Trillium plug-in for version 7.5 then it is supported. IBM does not cease support of part of a current product version. Challenge the consultant to provide a statement in writing from IBM that it is no longer supported. Plug-in stages are written to a consistent API; chances are that y...
by ray.wurlod
Tue Jun 12, 2007 2:48 pm
Forum: IBM QualityStage
Topic: Match Job abort
Replies: 4
Views: 1947

There is no more information in the error message than the VALSORT module ran out of memory, or tried to access a memory address that its process did not own. It could be a difference between versions. Or the amount of data could be sufficiently larger to trigger this problem. If there were any othe...
by ray.wurlod
Tue Jun 12, 2007 5:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command
Replies: 25
Views: 9969

The job status is available on file unit #2 (stderr). If you specify the -jobstatus option, the job status of dsjob is the exit status of the job itself, on file unit #1 (stdout). It is documented thus.
by ray.wurlod
Tue Jun 12, 2007 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error -ODBC license file (IVVM.LIC or DDVM.LIC) not found
Replies: 13
Views: 4629

Now I'm confused. All of the following must be in SHLIB_PATH, and before any database libraries:
$DSHOME/lib
$APT_ORCHHOME/lib
branded_odbc/lib

As far as I can determine, there is no branded_odbc within the $APT_ORCHHOME directory.
by ray.wurlod
Tue Jun 12, 2007 5:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSetJobLimit and DSJ_LIMITWARN
Replies: 7
Views: 4282

DSSetJobLimit() is used from the DataStage API, not from dsjob.

DSJ.LIMITWARN is a DataStage constant used as an argument to DSSetJobLimit() and which specifies that it is the warnings limit (not the rows limit) that is being set.

Research the on-line help for DSSetJobLimit.
by ray.wurlod
Tue Jun 12, 2007 5:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parsing value in Column
Replies: 5
Views: 1175

Code: Select all

Field(InLink.TheColumn, "-", 1, 1)
Field(InLink.TheColumn, "-", 3, 99)


The second field is "", which you can safely discard.