Search found 53125 matches

by ray.wurlod
Tue Aug 29, 2006 5:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rare Error Messsage
Replies: 20
Views: 9221

Clearly it's not rare. Floating point exceptions ought not to occur with hashed files, though it is possible with corrupted hashed files (where the modulus calculation performs an improper division). Have you checked the structural integrity of the hashed file(s) that your job accesses? Otherwise, w...
by ray.wurlod
Tue Aug 29, 2006 5:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: the way to import and export XML file
Replies: 5
Views: 1377

Yes, have fewer, smaller XML files. These stages were intended to process short messages when exposed as a web service - they are not intended to perform "grunt work". Investigate DataStage TX as an alternative.
by ray.wurlod
Tue Aug 29, 2006 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to write nulls as nulls
Replies: 10
Views: 2744

There is no such thing as NULL in a text file - there is only text.

You use the Null Field Value property to specify how you want NULL to be represented when writing to the file. This can be any string you like in a delimited file, but must be of the correct width in a fixed-width format file.
by ray.wurlod
Tue Aug 29, 2006 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "Configuring Template" hung
Replies: 4
Views: 1869

:?:
Sometimes - no promises - clicking Cancel then saying "No" to "OK to exit install?" issues a "wake up call" to the installation process and allows it to keep going.
by ray.wurlod
Tue Aug 29, 2006 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view source data
Replies: 10
Views: 2323

You do not set $PROJDEF in the Administrator. In the Administrator you set an explicit default value that is used to replace $PROJDEF if that is found as the default value for a job parameter.
by ray.wurlod
Tue Aug 29, 2006 5:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: The link contains no derivation rules
Replies: 5
Views: 4741

That's just not good enough, is it? :wink:
What do you do when you have to use one "for real"?
by ray.wurlod
Tue Aug 29, 2006 5:41 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can not create PSDB
Replies: 11
Views: 8433

ProfileStage does not use Microsoft Access internally as far as I am aware. Officially ProfileStage supports only Oracle, DB2/UDB or Microsoft SQL Server for the ProfileStage database (PSDB). The problem is not with using Oracle as the PSDB, it's with the install utility that creates the PSDB. There...
by ray.wurlod
Tue Aug 29, 2006 1:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xml input stage
Replies: 10
Views: 2648

Please share your solution so that future searchers will need less time to get to it.
by ray.wurlod
Tue Aug 29, 2006 1:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameters in between stages of a sequence
Replies: 7
Views: 1920

Using a User Variables activity upstream of these other activities is an erudite manner in which to expose the values to those other activities in a consistent and easily-maintained way.
by ray.wurlod
Tue Aug 29, 2006 1:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view source data
Replies: 10
Views: 2323

Unless you have set an explicit default value for the environment variable using the Administrator client, $PROJDEF can not be properly decoded. This might lead to the error that you have reported.
by ray.wurlod
Tue Aug 29, 2006 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal data type
Replies: 4
Views: 1227

:idea:
Decimal data types are deliberately preceded and trailled with zeroes so that you can verify visually that precision and scale are set correctly.
by ray.wurlod
Tue Aug 29, 2006 1:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while inserting rows to DB2
Replies: 3
Views: 980

In that case also check your locale setting, since comma may be the legitimate decimal placeholder in your locale (for example much of Europe) but you haven't told the computer (DB2) that this is the case.
by ray.wurlod
Tue Aug 29, 2006 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: The link contains no derivation rules
Replies: 5
Views: 4741

He means APT_DISABLE_COMBINATION of course. :wink:

This will allow you to narrow down the problem to the specific operator in which it is occurring, rather than be bewildered by operators combining to execute in the same process.
by ray.wurlod
Mon Aug 28, 2006 8:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: @INROWNUM ?
Replies: 23
Views: 14823

I have severe doubts about your claim. @INROWNUM is always assigned 1 for the first row input.

Of course, due to output constraints this row may not be output, but what I say is, and remains, true.

Perhaps you want @OUTROWNUM ?
by ray.wurlod
Mon Aug 28, 2006 8:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which Stages or functionality use the most shared memory?
Replies: 11
Views: 6210

If you really want to be pedantic, it's probably the DataStage resource service (which has the memory key daec7511 for version 7.5.1.1). in this shared memory segment are lock tables among other things; you have reserved space for them (using uvconfig) but it is not consumed until required. Neverthe...