Search found 53125 matches

by ray.wurlod
Thu Oct 15, 2015 2:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOW TO INVOKE THE DsSetUserStatus routine?
Replies: 4
Views: 5296

The only mechanisms that you can use in a parallel job are two. (1) An interlude before/after subroutine. (2) An interlude transform function routine that can be called from a BASIC Transformer stage (not a parallel Transformer stage). If you create and compile a before/after subroutine successfully...
by ray.wurlod
Wed Oct 14, 2015 6:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error calling conversion routine decimal_from_str
Replies: 2
Views: 3313

I suspect that the warning is generated from the metadata. Decimal(11,0) implies a string of 13 characters (including sign and decimal placeholder), so that the metadata generates a warning because your source is smaller than this. Can you try changing the source data type to VarChar(13) either in t...
by ray.wurlod
Wed Oct 14, 2015 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Multiple files in 11.3 by using sequential file
Replies: 7
Views: 2612

Read the documentation again. What you are requesting is not how it works (for a number of reasons). You are up for a step of renaming the files.
by ray.wurlod
Wed Oct 14, 2015 12:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: use user defined configuration file
Replies: 14
Views: 7973

APT_CONFIG_FILE needs the pathname of the configuration file, not just a parent directory. Conventionally the file name has the ".apt" suffix.

It seems to me that the $APT_CONFIG_FILE environment variable value is not a job parameter in your job design.
by ray.wurlod
Wed Oct 14, 2015 12:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file
Replies: 2
Views: 3881

First of all I would not regards Optim as a substitute or replacement for DataStage. The tools have tasks that do not overlap (though both may be included in a solution that, for example, requires ETL on masked data). Hashed files can really only be read by DataStage server jobs or by queries execut...
by ray.wurlod
Tue Oct 13, 2015 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: px.connect.fail##### files generated
Replies: 9
Views: 6843

Yes, I believe they're written there when the connector detects a failure in what it's connected to.
by ray.wurlod
Tue Oct 13, 2015 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Multiple files in 11.3 by using sequential file
Replies: 7
Views: 2612

Possibly you're not looking in the right place, in much the same way that you're not posting this question in the correct forum.
by ray.wurlod
Mon Oct 12, 2015 10:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sorting in the Aggregator
Replies: 2
Views: 1035

You have to use sorted data if the aggregation mode is Sort. The Aggregator makes use of the fact that data are sorted by grouping keys to minimize the amount of memory it needs - it only need to keep one key value in memory. Hash mode means that the Aggregator has to keep a table in memory with a r...
by ray.wurlod
Mon Oct 12, 2015 10:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: px.connect.fail##### files generated
Replies: 9
Views: 6843

I think the failure has to be from the database end.
by ray.wurlod
Fri Oct 09, 2015 2:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Required logic to perform
Replies: 5
Views: 3153

The answer to your next question is "Remove Duplicates stage preserving Last row in each group and Column Export stage."
by ray.wurlod
Fri Oct 09, 2015 2:37 pm
Forum: General
Topic: How to add or change short description of Multiple jobs.
Replies: 11
Views: 3071

skhan2@gmx.us wrote:I have to change 400+ jobs.
So about half a day all up, assuming you can do two per minute (not difficult).
by ray.wurlod
Thu Oct 08, 2015 6:52 pm
Forum: General
Topic: A Sequence Job to watch for files to appear
Replies: 4
Views: 1532

Include in the loop another check for a file which, if it exists, triggers the sequence to shut down gracefully.
by ray.wurlod
Thu Oct 08, 2015 6:50 pm
Forum: General
Topic: [Sequence] Routine Activity - Exec SH Output
Replies: 1
Views: 1331

ExecSH is not the correct type of routine to call from a Routine activity. ExecSH is a "before/after subroutine" that does not return a value. You need to build a "transform function" type routine. Something like: FUNCTION CallExecSH(Arg1) DEFFUN ExecSH(InputArg, ErrorCode) CALLI...
by ray.wurlod
Thu Oct 08, 2015 6:34 pm
Forum: General
Topic: Search for string on designer canvas
Replies: 8
Views: 3929

rkashyap wrote:At IBM Insight, what is the correct forum for giving such suggestions?
There isn't one. That's not what IBM Insight conference is about. Use the standard enhancement request mechanism.
by ray.wurlod
Thu Oct 08, 2015 6:30 pm
Forum: General
Topic: Parameter Set Limit
Replies: 3
Views: 2086

No practical limits in either scenario as far as DataStage is concerned.

But you will need to maintain them, and select parameters from long lists. That might be the governing factor.