Search found 53125 matches

by ray.wurlod
Tue Jan 04, 2011 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems using DB2Z stage to talk to Mainframe DB2
Replies: 2
Views: 1541

APT_RESPATH is only about the location of the "resource files" used to decode error codes into error text. I really think there's a problem of some kind with your connection string. It is reporting the individual elements as "not found", which is unusual. Have the correct entries...
by ray.wurlod
Tue Jan 04, 2011 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in aggregator stage (Hash table has grown etc..)
Replies: 3
Views: 4488

Only partition on the first of the fields, provided that this generates enough distinct values to cover all your processing nodes. Sort on all four.
by ray.wurlod
Tue Jan 04, 2011 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in aggregator stage (Hash table has grown etc..)
Replies: 3
Views: 4488

The data have to be partitioned on the first grouping key and sorted on all the grouping keys when sort method is used. But your environment variables prevent DataStage from inserting tsort and partitioner operators to achieve this, so YOU must do the explicit sorting and partitioning.
by ray.wurlod
Tue Jan 04, 2011 3:09 pm
Forum: General
Topic: Pass next day of a date to a job from job activity stage
Replies: 4
Views: 1519

Where is the date coming from? Convert it (if required) to internal format using Iconv(), add 1 then convert it back to external format (if required) using Oconv().
by ray.wurlod
Tue Jan 04, 2011 2:58 pm
Forum: General
Topic: Intermittent Remote DataStage Connection Issue
Replies: 4
Views: 2814

Does this occur using the Administrator client too, or just the Designer or Director clients?
by ray.wurlod
Tue Jan 04, 2011 2:57 pm
Forum: General
Topic: List of all jobs used triggered by a sequence
Replies: 5
Views: 2304

Could you please do the needful Premium membership is the main mechanism by which the hosting and bandwidth costs of DSXchange are met. Premium membership allows you to read the entirety of the five premium posters' contributions. It is not expensive, at less than 30c (Rs12) per day. Can you, there...
by ray.wurlod
Tue Jan 04, 2011 2:54 pm
Forum: General
Topic: Designer Disappear
Replies: 4
Views: 1815

Does it (Designer) lose focus or disappear completely? If you "show desktop" can you get back to it? Using Alt-Tab can you switch to Designer after this occurs?
by ray.wurlod
Tue Jan 04, 2011 2:52 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Execute Column Analysis in IA
Replies: 13
Views: 6144

When you run the job from IA, what events get logged in the log visible from Director?
by ray.wurlod
Tue Jan 04, 2011 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Status code = -9999 DSJE_DSJOB_ERROR
Replies: 21
Views: 16291

A year later, can you be totally certain that you have exactly the same version that datisaq is running? Or that your issue is exactly the same? Why not start a new thread?
by ray.wurlod
Tue Jan 04, 2011 4:41 am
Forum: General
Topic: May I know the latest version??
Replies: 2
Views: 1186

by ray.wurlod
Tue Jan 04, 2011 4:39 am
Forum: General
Topic: DS server issue
Replies: 2
Views: 6280

We don't do urgent. DSXchange is an all-volunteer site; its members post as and when they can. If you need rapid response sign up with your official support provider for priority service, and learn just how much "urgent" costs. There is clearly a problem with the way you've set up DataSta...
by ray.wurlod
Tue Jan 04, 2011 4:36 am
Forum: General
Topic: List of all jobs used triggered by a sequence
Replies: 5
Views: 2304

You can't do this with dssearch. You can, however, do it with dsjob to look at the log of the sequence. Near the end of the run there is a "summary of sequence run" entry in the log, which lists all of the activities that the sequence actually ran.
by ray.wurlod
Mon Jan 03, 2011 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot Satge
Replies: 3
Views: 1305

Better is the right one. Funnel does a "union all" of its incoming rows from multiple inputs. Pivot does a pivot of its single input.
by ray.wurlod
Mon Jan 03, 2011 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ORACLE_PRESERVE_BLANKS equivalent in Teradata
Replies: 8
Views: 3111

Learn about "derivation substitution" in the Transformer stage - you can save yourself a lot of work.
by ray.wurlod
Mon Jan 03, 2011 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to do an 'IN' statement in a transformer.
Replies: 3
Views: 1463

There is no IN available. You need something like

Code: Select all

svYear = #jpCurrentYear# Or svYear = #jpPreviousYear# Or svYear = #jpEarlierYear#