Search found 15603 matches

by ArndW
Tue Mar 09, 2010 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Compilation Error (on Windows)
Replies: 10
Views: 4017

Perhaps it is a limitation of your version/platform regarding parameters. If you keep the dummy argument and change your routine to accept a parameter, does the job work?
by ArndW
Tue Mar 09, 2010 6:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Compilation Error (on Windows)
Replies: 10
Views: 4017

While I'm just guessing, what happens if you call the routine with

Code: Select all

RoutineName('Dummy')
- does the compiler error change?
by ArndW
Tue Mar 09, 2010 6:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can we implement is DS PX
Replies: 6
Views: 2201

It would be easier to answer if you could illustrate your problem with an example, for instance the multiple dates - are they in a single column with a separator, or in distinct columns?
by ArndW
Tue Mar 09, 2010 6:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring function problem
Replies: 8
Views: 32821

I think one could use

Code: Select all

DSLink149.INTFC_FILE_CATG[1,4]
, too.
by ArndW
Tue Mar 09, 2010 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic:
Replies: 9
Views: 9508

Ok, then your source is Oracle. The two characters you've listed cannot be stored in 7bit ASCII, internally your Oracle is using another character set. You've specified that Oracle converts from the internal character set to 7 bit ASCII and it is there that you are losing these character values. Fin...
by ArndW
Tue Mar 09, 2010 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Classifying Link Types as Source, Reference and Reject
Replies: 10
Views: 5690

The DSGetStageInfo() using DSJ.LINKTYPES will get you that information.
by ArndW
Tue Mar 09, 2010 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Compilation Error (on Windows)
Replies: 10
Views: 4017

Hello Shilp,

did you perform the link step illustrated in the example? Also, could you post how you call up your routine in the transform stage?
by ArndW
Tue Mar 09, 2010 5:22 am
Forum: Enhancement Wish List
Topic: Automated Code review/check
Replies: 11
Views: 21920

No such tool is available. Some of us, myself included, have coded small applications to do such checking, but since each site has different standards that they wish enforced, such code is generally not re-usable.
by ArndW
Tue Mar 09, 2010 5:08 am
Forum: General
Topic: MVS 390, Char columns with complex data types
Replies: 7
Views: 1857

Have you looked into using the Complex Flat File stage in server jobs, which were created expressely for this type of data.
by ArndW
Tue Mar 09, 2010 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting link count into a file
Replies: 1
Views: 817

I would add a second output from a transform stage and output just the @OUTROWNUM value, then to an aggregator that takes the MAXimum value of that column, then to a transform stage to create your header record contents, this going to a funnel stage to the main data stream. The join would use the si...
by ArndW
Tue Mar 09, 2010 2:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing Multiple instances of a DS job
Replies: 2
Views: 1639

Are all the jobs involved actually marked and compiled as multi-instance jobs?
by ArndW
Tue Mar 09, 2010 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup
Replies: 4
Views: 1757

Could you explain the error you are getting with the direct lookup at 8.1; there is no reason I can think of why that shouldn't work.
by ArndW
Tue Mar 09, 2010 2:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get Stage Properties from command line
Replies: 4
Views: 2112

I know of no method of getting this from the command line interface.
by ArndW
Mon Mar 08, 2010 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I change the default date format?
Replies: 0
Views: 3965

Eitehr you have gone from a non-NLS to a NLS installation, or you have changed your default NLS locale during the conversion. Use the administrator client, select your project and click on the "NLS" tab to see what your current settings are.
by ArndW
Mon Mar 08, 2010 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad state not throwing error till stopping unix process
Replies: 3
Views: 1228

The first thing is never to use kill from UNIX, particularly 'kill -9', unless there are no other options. In your case I'm still very confused as to what the situation and/or problem is. Are you, or are you not, using RESET in the job call? Somehow your job must be getting from state 'finished' to ...