Search found 42189 matches
- Thu Oct 12, 2006 4:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Allowing multiple instances when it is not necessary
- Replies: 6
- Views: 1961
I don't know... multi-instance jobs typically have to be designed with that capability in mind. Checking that by default allows you to run the job as a multi-instance job when that may not be appropriate. To me it kind of falls into the same category as including job parameters that nothing in the j...
- Thu Oct 12, 2006 3:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Separate two command in "After Job Subroutine"
- Replies: 9
- Views: 3633
- Thu Oct 12, 2006 3:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Separate two command in "After Job Subroutine"
- Replies: 9
- Views: 3633
- Thu Oct 12, 2006 3:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling KeyMgtGetNextValue() while moving machines - Post2
- Replies: 13
- Views: 18512
Re: Handling KeyMgtGetNextValue() while moving machines - Po
EXECUTE "CREATE.FILE SDKSequences 2 1 1" FYI - This is from a Version 6 server.>> I tried to find this hashed file and found the name at "E:\Ascential\DataStage\Projects\PROD\SDKSequences", but it doesn't look like a normal hashed file to me. Am I missing something. A little extra hint would be app...
- Thu Oct 12, 2006 3:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Sequence Trigger is not getting Triggered
- Replies: 23
- Views: 8841
- Thu Oct 12, 2006 12:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Server Error
- Replies: 10
- Views: 3053
- Thu Oct 12, 2006 12:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Null Maping
- Replies: 1
- Views: 703
A couple of problems: There's no such thing as a null in a Sequential file, those are empty strings... and not the same thing. A null can never equal anything, not even another null, so your lookup will never succeed with those values. I'd suggest substituting another value when you see NULL, someth...
- Thu Oct 12, 2006 12:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can't we set the limts on scheduled jobs?.
- Replies: 1
- Views: 772
- Thu Oct 12, 2006 12:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Project backup
- Replies: 4
- Views: 1505
- Thu Oct 12, 2006 9:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Sequence Trigger is not getting Triggered
- Replies: 23
- Views: 8841
- Thu Oct 12, 2006 8:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Sequence Trigger is not getting Triggered
- Replies: 23
- Views: 8841
I referred to all of your posts before replying, always do. My Guru friend, please don't try to code in something 'Unconditional'... that isn't. It only covers three of the many possible outcomes a job could have. Here the issue is that the Unconditional trigger is getting triggered only when the Jo...
- Thu Oct 12, 2006 8:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: This item has no design time information
- Replies: 15
- Views: 6210
That suggests your project is corrupt. Have you every 'reindexed' a project? Worked with the DS.TOOLS menu? That would be the suggestion for a next step. Search the fourm for 'reindex' or DS.REINDEX as there have been many posts on the subject explaining the process. Basically, you kick everybody ( ...
- Thu Oct 12, 2006 7:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: BASIC Compilation Error
- Replies: 10
- Views: 2980
I want to write it as a Subroutine.. any help!! Ah... you need to mention little details like this, as the 'rules' are different between the two types. And I should have noted you parsing the InputArg - that's a big clue. A 'Before/After' routine takes only one input argument and can only return a ...
- Thu Oct 12, 2006 7:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Compare the two dates which is Greater
- Replies: 8
- Views: 6241
- Thu Oct 12, 2006 7:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Sequence Trigger is not getting Triggered
- Replies: 23
- Views: 8841
Re: Job Sequence Trigger is not getting Triggered
On job1 success or failure I want to trigger the routine and onsuess of job1 I want to trigger job2. Why make it more complicated than it needs to be? Dump the custom trigger. Two simple triggers will work: For the link from Job1 to the Routine - 'Unconditional'. For the link from Job1 to Job2 - 'O...