Search found 42189 matches

by chulett
Wed May 14, 2008 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max no of jobs can be called in a Job Sequence in PX
Replies: 4
Views: 1313

As I noted in the other thread... depends.
by chulett
Wed May 14, 2008 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in sequence giving "Unhandled failure"
Replies: 3
Views: 1616

When a routine returns a 'non-zero' value and you have the 'automatically handle activities that fail' option enabled, they are considered to have failed. It considers it 'unhandled' because you haven't provided trigger conditions to handle the 'failure' so it handles it for you. We've discussed thi...
by chulett
Wed May 14, 2008 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequence issue need help
Replies: 7
Views: 2416

Exactly. From a custom trigger.
by chulett
Wed May 14, 2008 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't log into uvsh/dssh from unix
Replies: 10
Views: 4491

Note that you may need to 'source' your dsenv file first to prevent core dumps or other problems launching the shell:

Code: Select all

. ./dsenv
by chulett
Wed May 14, 2008 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding the Category for each job.
Replies: 8
Views: 2090

Welcome aboard. :D Job name and category are elements of the DS_JOBS repository 'table'. So something simple like: SELECT NAME, CATEGORY FROM DS_JOBS; will get you a complete list of job names and categories. This can be run from either the Administrator client or from the TCL command line. There ar...
by chulett
Wed May 14, 2008 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Got certified in Datastage
Replies: 40
Views: 13776

Ascential PPT's course? What be that? :?

Congrats, by the way. :D
by chulett
Wed May 14, 2008 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS jobs
Replies: 13
Views: 3492

You can 'run' dsjob from any directory as long as $PATH is setup correctly.
by chulett
Wed May 14, 2008 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 5069

Of course. I believe that If the file is a Hashed file or ready-to-be-converted-as-Hashed file, We could take advantage of Hashed File concept and derive the solution using multi-valued metadata handling capacity of the UV stage as ray.wurlod reacted. Or for us Luddites who didn't cut our teeth on ...
by chulett
Wed May 14, 2008 6:54 am
Forum: General
Topic: What is SCD.How we in Data Stage
Replies: 13
Views: 20477

Good Lord, calm down. How long did you wait before whining, a hour and a half? Sheesh!!!!!!!!
by chulett
Wed May 14, 2008 6:51 am
Forum: General
Topic: Processing each record using a loop
Replies: 4
Views: 1521

Jobs automatically process records 'in a loop' without you having to do anything special. Meaning, each record will go from the first stage to the last stage individually and in order. An obvious simplification but generally correct.

So just build your job and don't worry about any 'loops'.
by chulett
Tue May 13, 2008 8:09 pm
Forum: DSXchange Testimonials
Topic: great site
Replies: 3
Views: 10691

Good luck! :D
by chulett
Tue May 13, 2008 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 5069

Maximum number of pivoted columns is known? Always 4?
by chulett
Tue May 13, 2008 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to do left join in transformer
Replies: 9
Views: 4294

How about some details about what you are trying to accomplish? Join 'in transformer' with what - hashed file?
by chulett
Tue May 13, 2008 12:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical pivot
Replies: 15
Views: 5069

Post examples - sample input records and what they should look like after the pivot.
by chulett
Tue May 13, 2008 12:14 pm
Forum: General
Topic: trigger condition
Replies: 11
Views: 7410

Of course there are all kinds of ways to do what you want, some more (unnecessarily) complicated than others. I guess you are bent on not accepting the One True Answer. One 'polls' in a looping structure. My old post you linked to was all about a hand coded solution. Nowadays, Sequence jobs support...