Search found 4605 matches

by kduke
Wed Aug 25, 2004 8:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

Thanks Ray. So here is the final solution: INSERT INTO DICT DS_JOBS (FIELD, CODE, EXP, NAME, FORMAT, SM, ASSOC) VALUES ('DEPEND_TYPE', 'I', 'RAISE(TRANS("DS_JOBOBJECTS","J\": @RECORD<5> :"\ROOT",32,"X"))', 'DependType', '3R', 'M', '...
by kduke
Wed Aug 25, 2004 12:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Common statement does not work
Replies: 12
Views: 2639

They did not change the way common works. It has worked the same way for many years. Common values are retained across one connection to Universe. If a job is broken down into multiple processes with different connections then common values are not retained. Based on the complexity of a job is when ...
by kduke
Tue Aug 24, 2004 5:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

The same error because they are synonyms.
by kduke
Mon Aug 23, 2004 9:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

I tried several ways and Universe breaks down. This is the closest I could get. SELECT DS_JOBS.NAME, DS_JOBS.CATEGORY, EVAL DS_JOBOBJECTS."@RECORD<32>" FMT '3R', EVAL DS_JOBOBJECTS."@RECORD<31>" FMT '35L' FROM DS_JOBS, DS_JOBOBJECTS WHERE DS_JOBS.NAME = 'SeqMemberDim' and DS_JOBS...
by kduke
Mon Aug 23, 2004 6:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

SELECT EVAL "TRANS('DS_JOBOBJECTS','J\':@RECORD<5>:'\ROOT',32,'X')" AS DEPEND_TYPE FMT '3R', EVAL "TRANS('DS_JOBOBJECTS','J\':@RECORD<5>:'\ROOT',31,'X')" AS DEPEND_JOBS FMT '35L' FROM DS_JOBS WHERE NAME = 'SeqMemberDim' ; 1) EVAL is used to create a dictionary it...
by kduke
Mon Aug 23, 2004 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of DataStage.
Replies: 15
Views: 8945

I hate it when things blow up tragically. Nice blow ups are so much better ways to die. I think what Ken is saying is there are failures which DataStage can easily trap. This jobs will end under DataStage control. There are other times when a job fails by violating something that the OS does not all...
by kduke
Fri Aug 20, 2004 6:01 am
Forum: General
Topic: uv commands failing????
Replies: 6
Views: 3743

That is okay, in Texas we have the three R's, readin, rightin and rithmatic.
by kduke
Thu Aug 19, 2004 10:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

If you cannot add this to your script then let me know. It should not be hard to parse with perl. I know I can do it in Korn shell. I do not know perl as well as Korn.

Ray is correct on everything listed. A lot of hacking made this possible and some good Universe skills.
by kduke
Thu Aug 19, 2004 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

You guys need to add code tags with Alt C. Here is the SQL. SELECT EVAL "TRANS('DS_JOBOBJECTS','J\':@RECORD<5>:'\ROOT',32,'X')" AS DEPEND_TYPE FMT '3R', EVAL "TRANS('DS_JOBOBJECTS','J\':@RECORD<5>:'\ROOT',31,'X')" AS DEPEND_JOBS FMT '35L' FROM DS_JOBS WHERE NAME =...
by kduke
Thu Aug 19, 2004 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

Dhiraj

Post your script please. I might be able to explain how to get all the jobs attached to a sequence.
by kduke
Tue Aug 17, 2004 11:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help - Abort after XX Warnings
Replies: 1
Views: 648

I don't think so. This is a runtime option for the person running the job.

It can be set in your Director for that PC. It is probably stored in the registry. You might be able to write a simple VB program to do it.
by kduke
Mon Aug 16, 2004 7:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automatically handle activities that fail
Replies: 11
Views: 9494

Not really. The exception handler traps any event that you do not trap yourself. So if you trap executed ok and warnings then it will trap any other return value. If you only have an OK link then warnings will go thru the exception handler. The UtilityAbortToLog is so this sequence aborts so the par...
by kduke
Mon Aug 16, 2004 5:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automatically handle activities that fail
Replies: 11
Views: 9494

That is why you have to run UtilityAbortToLog to show this sequence as failed or aborted.

The good part of this is to automatically start where it failed. It works great.
by kduke
Mon Aug 16, 2004 5:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automatically handle activities that fail
Replies: 11
Views: 9494

You need to also check add checkpoints so sequence is restartable. You need an exception handler stage. We usually route this to an email notification and a routine activity which calls UtilityAbortToLog.