Search found 53125 matches

by ray.wurlod
Tue Aug 13, 2013 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading WebSphere MQ messages with DataStage
Replies: 11
Views: 6029

Read the file using a hex dump utility, such as the od -xc command, to learn what the characters are. I suspect that you have one or two binary representations of numbers in there. As Ernie noted, you need to speak with whoever authored that file and understand what is truly stored in each of its by...
by ray.wurlod
Tue Aug 13, 2013 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot is hanging
Replies: 8
Views: 1462

For starters, don't push. Your last two posts were at 10:48pm and 1:22am my time. DSXchange is an all volunteer site whose members post if and when they can, at the same time being under no obligation to do so. If you effect the pivot using a Transformer stage, does it still hang? How, precisely, ar...
by ray.wurlod
Tue Aug 13, 2013 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: GenRuntime Error When Compiling
Replies: 5
Views: 1590

All patches are to be found at Fix Central
by ray.wurlod
Tue Aug 13, 2013 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: will partition despite the preserve-partitioning flag
Replies: 7
Views: 2859

Because the composer (conductor) inserts a tsort operator with all default settings (over which you have no control apart from memory allocation*) when you use a link sort. An explicit Sort stage gives you that control, via the stage Advanced properties. * via APT_TSORT_STRESS_BLOCKSIZE environment ...
by ray.wurlod
Tue Aug 13, 2013 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Semaphores are building up to a very high number
Replies: 5
Views: 3914

An internet search will reveal to you that a semaphore is a place for a program to wait for some event to occur (even for an amount of time to elapse). Semaphores are implemented in different ways on different platforms, but in all cases they should be released once finished with. If they aren't, th...
by ray.wurlod
Tue Aug 13, 2013 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Possible truncation of variable length ustring
Replies: 4
Views: 3070

Did you mention the cast (change of data type) in the Modify stage specification?

Code: Select all

newcol:ustring[11]=inputcol
(Use ustring if Unicode, UTF-8, etc., are in play; use string otherwise.)
by ray.wurlod
Tue Aug 13, 2013 4:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: will partition despite the preserve-partitioning flag
Replies: 7
Views: 2859

Then, yes, the warning is because you are using a link sort. Use an explicit Sort stage to eliminate the warning (keeping the Preserve Partitioning = "Clear" setting in the stage upstream of that). Or you could demote the warning with a message handler since you know it doesn't affect what...
by ray.wurlod
Mon Aug 12, 2013 10:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error when i enable partition property
Replies: 2
Views: 2771

Welcome aboard. DataStage is unable to find the $DSHOME/.odbcini file (whose pathname may also be stored in the ODBCINI environment variable). Seems to me you need to make sure that the .odbc.ini file exists and contains all needed DSNs. Also make sure that there exists a file called uvodbc.config (...
by ray.wurlod
Mon Aug 12, 2013 10:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot is hanging
Replies: 8
Views: 1462

Did you specify "Sort" mode for the Aggregator stage, since your data are already sorted by the grouping key?
by ray.wurlod
Mon Aug 12, 2013 10:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use sdk Transforms in Datastage
Replies: 1
Views: 990

Transforms are only available for use in DataStage BASIC expressions, such as in server jobs and sequences. They are not available in the parallel Transformer stage. Parallel jobs have other strategies, such as the LastRowInGroup() function and the ability to use stage variables' execution order to ...
by ray.wurlod
Mon Aug 12, 2013 6:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot is hanging
Replies: 8
Views: 1462

Look at your data. You have two entries for January. Use a Remove Duplicates stage to keep only the last in each group, if that's what you need.
by ray.wurlod
Mon Aug 12, 2013 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading WebSphere MQ messages with DataStage
Replies: 11
Views: 6029

Why are you using Sequential File stage? Or, to put it another way, why aren't you using the MQ Connector?
by ray.wurlod
Mon Aug 12, 2013 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: GenRuntime Error When Compiling
Replies: 5
Views: 1590

You should not have to rebuild the project. However, with any problem with GenRuntime, it may be useful to re-start both the engine and the agents. Also check whether there are any patches relating to GenRuntime - they exist for earlier versions.
by ray.wurlod
Mon Aug 12, 2013 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transfomer Mapping Clarification
Replies: 1
Views: 675

Not in Transformer stage but possibly in XML Input stage or XML stage.
by ray.wurlod
Mon Aug 12, 2013 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: will partition despite the preserve-partitioning flag
Replies: 7
Views: 2859

Did you set Preserve Partitioning to Clear in the preceding stage in the job?