Search found 42189 matches
- 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
- 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...
- 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
- 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- 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...
- 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
- Wed May 14, 2008 7:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS jobs
- Replies: 13
- Views: 3492
- 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 ...
- Wed May 14, 2008 6:54 am
- Forum: General
- Topic: What is SCD.How we in Data Stage
- Replies: 13
- Views: 20477
- Wed May 14, 2008 6:51 am
- Forum: General
- Topic: Processing each record using a loop
- Replies: 4
- Views: 1521
- Tue May 13, 2008 8:09 pm
- Forum: DSXchange Testimonials
- Topic: great site
- Replies: 3
- Views: 10691
- Tue May 13, 2008 2:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Vertical pivot
- Replies: 15
- Views: 5069
- 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
- Tue May 13, 2008 12:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Vertical pivot
- Replies: 15
- Views: 5069
- 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...