Search found 4605 matches

by kduke
Wed Jul 26, 2006 5:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report on jobs currently running in DS server
Replies: 18
Views: 8030

I don't have a UNIX machine to test this but it should be close. If you finish it then post it. ps -ef | grep DSD.RUN | grep -v grep | while read LINE do set - $LINE JOBNAME=$4 dsjob -report $JOBNAME >>jobstats.txt done I think this is what they wanted you to try to figure out. You can lookup the sy...
by kduke
Wed Jul 26, 2006 6:26 am
Forum: Site/Forum
Topic: Laziness!
Replies: 18
Views: 8952

balajisr is correct. Make Server the first topic. I think that would help.
by kduke
Tue Jul 25, 2006 9:22 pm
Forum: Site/Forum
Topic: Laziness!
Replies: 18
Views: 8952

Not me. Tell them to repost in the correct forum. You have told some of these over and over and still they post in the wrong forum.
by kduke
Tue Jul 25, 2006 8:07 pm
Forum: Site/Forum
Topic: Laziness!
Replies: 18
Views: 8952

DO NOT ANSWER THE QUESTIONS. It is our fault for answering these questions.
by kduke
Tue Jul 25, 2006 2:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Search for a string in SYSTEM TABLES
Replies: 2
Views: 568

This script is called DsSearch1.sql. It is part of EtlStats.
by kduke
Sat Jul 22, 2006 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Instances of jobs and logs
Replies: 11
Views: 4246

Good hacking ahead.
by kduke
Fri Jul 21, 2006 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Instances of jobs and logs
Replies: 11
Views: 4246

Instance id is field 7 of RT_LOG. Here is the SQL. select TIMESTAMP, SEVERITY, FULL.TEXT from RT_LOG:1 where EVAL "@ID" NOT LIKE '//%' AND EVAL "@RECORD<7>" = ':2' order by TIMESTAMP ; Change :1 in the Job number. You need to list DS_JOBS to get the job number. Change :2 into the...
by kduke
Fri Jul 21, 2006 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset one job
Replies: 3
Views: 999

I stole this code from an old program which I did before I knew about DSPrepareJob. * Setup EtlChkSeqJobsNotRun.SeqName, run it, wait for it to finish, and test for success hJob2 = DSAttachJob("EtlChkSeqJobsNotRun.":SeqName, DSJ.ERRFATAL) If NOT(hJob2) Then Call DSLogInfo&#...
by kduke
Thu Jul 20, 2006 7:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How save job status ffrom DS log
Replies: 9
Views: 1824

t-shirts.
by kduke
Thu Jul 20, 2006 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of selfmade routine
Replies: 14
Views: 2643

Best 3 word answers ever. "Take. Adapt. Shine." pretty good too. :wink:
by kduke
Thu Jul 20, 2006 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How save job status ffrom DS log
Replies: 9
Views: 1824

Can I barrow "Take. Adapt. Shine."?
by kduke
Thu Jul 20, 2006 7:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi-Instance jobs and User Status
Replies: 6
Views: 1643

It does store separate status values for each instance. Not sure about UserStatus. Why do you need to know?
by kduke
Tue Jul 18, 2006 6:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi instance job logs
Replies: 18
Views: 6920

I fixed this code. It does work but still I do not recommend it. I would change it to delete only old records if I was going to use this.