Search found 53125 matches

by ray.wurlod
Mon Oct 28, 2013 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use @OUTROWNUM as sequential file name suffix
Replies: 9
Views: 3196

Job parameters are resolved when the job starts. Until version 9.1 (except for the Folder stage in server jobs) you can't name files based on anything in the data.
by ray.wurlod
Sun Oct 27, 2013 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output stage in Parallel Job - bad performance
Replies: 6
Views: 1654

I don't believe it is correct, but am struggling to remember back to 8.0. As a general rule, though, a stage that is marked as parallel executes in multiple processes one per processing node defined in the configuration file.
by ray.wurlod
Sun Oct 27, 2013 1:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error
Replies: 2
Views: 1089

(What Andy said plus) not even if you're using a Microsoft operating system!
by ray.wurlod
Fri Oct 25, 2013 4:01 pm
Forum: General
Topic: Error calling subroutine: DSR_EXECJOB (Action=5)
Replies: 4
Views: 1899

It's possible that one or more of the hashed files in the project became corrupted when the disk filled. Execute the following commands from a dssh environment or the Command window of the Administrator client for that project. SELECTFL ACCOUNT.FILE.STATS ALL LOCAL LIST STAT.FILE The first command s...
by ray.wurlod
Fri Oct 25, 2013 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage - Clarification
Replies: 5
Views: 2196

There is no such option in the Join stage.
by ray.wurlod
Fri Oct 25, 2013 2:02 pm
Forum: General
Topic: Issue with attachment in email notification
Replies: 2
Views: 2212

But first verify (in the job log) that #File# is being passed correctly to the job.
by ray.wurlod
Fri Oct 25, 2013 2:00 pm
Forum: IBM QualityStage
Topic: Query on Match passes and Match frequency generation
Replies: 3
Views: 3247

Try blocking also on NYSIIS of primary name and initial of first name.
by ray.wurlod
Fri Oct 25, 2013 1:58 pm
Forum: IBM QualityStage
Topic: Warning in Reference Match During Blocking
Replies: 1
Views: 2641

You need to reduce the number of records per block. Usually the way to do this is to add one or more additional blocking columns. Think about the implications. If you have 10,000 record in a block, then you have 10,000 x 10,000 (10 million) pairwise comparisons that have to be made, just for that bl...
by ray.wurlod
Thu Oct 24, 2013 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: webservice tranformer stage
Replies: 2
Views: 1467

You need to test the web service itself from some other kind of client to determine whether there's a limit on the rate of updates that the service itself can perform.
by ray.wurlod
Thu Oct 24, 2013 1:45 pm
Forum: General
Topic: Default Values in Parameter Set
Replies: 5
Views: 1247

Use values files to provide different sets of defaults for different circumstances (in your case for different years).

If you make the parameters all environment variables you can create default values in the Administrator client.
by ray.wurlod
Thu Oct 24, 2013 1:41 pm
Forum: General
Topic: Routine activity failing in sequence
Replies: 8
Views: 1934

A routine that returns a non-zero value will trigger the automatic "error" handler in a sequence. Add an explicit Failure trigger to bypass this handling,
by ray.wurlod
Thu Oct 24, 2013 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ Routine including boost c++ libraries
Replies: 1
Views: 1157

The boost libraries aren't the problem here. The problem is that DataStage cannot find the library/object that was created by compiling the Transformer stage (probably because its parent directory is not in your library search list). It (the Transformer .so file) should be in ./RT_SCnnn, where nnn i...
by ray.wurlod
Thu Oct 24, 2013 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message handler
Replies: 3
Views: 1592

You must add it individually to jobs unless you make it the default message handler for the project. To make a message handler the default for the project you need to use the Administrator client, and go to the Parallel tab in the project properties. You can select one from a drop-down list of named...
by ray.wurlod
Wed Oct 23, 2013 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage
Replies: 5
Views: 1575

You must perform the comparison before the "remembering" stage variable is executed. svCurrentValue <--- input column svIsIncreasing <--- (svCurrentValue > svPreviousValue) svPreviousValue <--- input column (You don't actually need svCurrentValue.) Use the value of svIsIncreasing in your c...
by ray.wurlod
Wed Oct 23, 2013 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Stage Problem with Column Names
Replies: 3
Views: 2248

DataStage does not tolerate spaces in column names. There is no way to avoid changing name at source; DataStage does not recognise quoted identifiers, square brackets or any other convention.