Search found 53125 matches

by ray.wurlod
Wed Aug 25, 2010 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator group outputs empty string value
Replies: 4
Views: 1584

Same doesn't help. What's it the same AS ? That is, what is the upstream partitioning algorithm that's being used?
by ray.wurlod
Wed Aug 25, 2010 1:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in installing DS server
Replies: 4
Views: 1020

All downloads are from IBM's Passport Advantage site.
by ray.wurlod
Wed Aug 25, 2010 1:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduler Error loading connector library libccora10g.
Replies: 5
Views: 3753

In that case dsenv should have been executed. Look in the second event in the job log (environment variables) and confirm that all the search list environment variables are correctly set. If not, fix dsenv. If they are, check the execution permissions for the library. Also check that the required ge...
by ray.wurlod
Tue Aug 24, 2010 9:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in installing DS server
Replies: 4
Views: 1020

Welcome aboard. You probably have a UNIX version of the software, which can't be installed on Windows. DSXchange is not a mobile telephone; there is no reason to use SMS-style abbreviations. They only make life difficult for those whose first language is not English. Please add the words "you&q...
by ray.wurlod
Tue Aug 24, 2010 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating Decimal.
Replies: 13
Views: 3266

That wasn't explicit in your specification.

Code: Select all

svLeftOfDecimal <--  Field(InLink.Col, ".", 1, 1)
svNegative  <--  (Left(svLeftOfDecimal, 1) = "-")
svNumber  <--  Right(svLeftOfDecimal, 7)
svResult  <--  If svNegative Then "-" : svNumber Else svNumber
by ray.wurlod
Tue Aug 24, 2010 6:24 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Scheduling import of metadata
Replies: 1
Views: 1038

Scheduling import of metadata

Does anyone know whether there's any script/command line interface that can be used to import metadata (particularly from reports) into IA, and which therefore can be scheduled to run periodically?
by ray.wurlod
Tue Aug 24, 2010 6:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Truncating Decimal.
Replies: 13
Views: 3266

Does what you're doing work? The only improvement I could suggest would be to use stage variables for clarity and to avoid multiple calculations of the same function. Maybe use Left() function to test for the sign, if the input column data type is string.
by ray.wurlod
Tue Aug 24, 2010 6:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduler Error loading connector library libccora10g.
Replies: 5
Views: 3753

Never encountered it, but can you source the dsenv script in the script that cron runs?
by ray.wurlod
Tue Aug 24, 2010 6:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sql server extract - corrupt data when using an odbc stage
Replies: 4
Views: 2354

Can you read the data successfully if you change the data type to VarChar - possibly with maximum length set up to four times the NVarChar column length specification?
by ray.wurlod
Tue Aug 24, 2010 6:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reducing Swap Usage in Simple Jobs
Replies: 9
Views: 2279

You can certainly tune memory in the Sort stage, up or down, but if the system is already swapping heavily I'd be more inclined to figure out what's causing that. Is it genuine swap (to system swap space) or is it usage of the scratchdisk resources mentioned in your configuration file? If the latter...
by ray.wurlod
Tue Aug 24, 2010 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: In DataStage have any limitation for Job Name?
Replies: 7
Views: 4074

The limit in DataStage is 255 characters. However, the limit in Information Server may be smaller depending on what database type you're using - it's the limit imposed by that database on identifier names. Might be as small as 30 characters.
by ray.wurlod
Tue Aug 24, 2010 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting, partitioning vs sorting in a join stage
Replies: 1
Views: 1193

Try to do it yourself, on paper/whiteboard. Partitioning keeps all the equi-valued keys on the same partition as each other. It is usually sufficient to partition on the first join key because necessarily secondary join keys must be in that group. The Join stage does require - for efficiency of oper...
by ray.wurlod
Tue Aug 24, 2010 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: combine column data one below other
Replies: 2
Views: 923

Pivot stage will do this.
by ray.wurlod
Tue Aug 24, 2010 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer condition
Replies: 2
Views: 911

You DO need another Else clause at the end.

If..Then..Else is an expression, and must produce a value whether or not the test expression is true.