Search found 4605 matches

by kduke
Mon Jul 04, 2005 2:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export Jobs and Routines from DS 7.5 to DS 7.1
Replies: 5
Views: 1044

Craig

I got it to work. I doubt if sequences will import because they changed them in almost every release of Ds7.x.
by kduke
Mon Jul 04, 2005 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Category Information
Replies: 6
Views: 1139

This is one of the routines on my tips page. It has been posted before. * ----------------------------------------------------------------- * GetJobCategory(JobName) * Decription: Returns Job Category. * Written by: Kim Duke * Notes: * --------------------------------------------------------...
by kduke
Mon Jul 04, 2005 8:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Search jobs that uses a particular file
Replies: 8
Views: 2011

The quickest way is to run this SQL. Change SEQFILENAME to whatever you are looking for in uppercase. SELECT DS_JOBS.NAME AS JOB_NAME, DS_JOBS.CATEGORY, DS_JOBOBJECTS.NAME AS OBJECT_NAME, DS_JOBOBJECTS.OLETYPE, EVAL DS_JOBOBJECTS."if index(upcase(@RECORD),'SEQFILENAME',1) > 0 th...
by kduke
Sat Jul 02, 2005 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting DS log messages from DS and into Oracle.
Replies: 8
Views: 1877

Ray

This is a job except the whole SQL statement is sent to the next job. I was trying to explain it so JobNo, StartId and EndId are the parameters.
by kduke
Sat Jul 02, 2005 9:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replace function
Replies: 12
Views: 3171

Sorry. :oops:
by kduke
Fri Jul 01, 2005 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing output from shell script to a job
Replies: 11
Views: 3318

Use a filter stage. You could also pass in shell variables as parameters. You could also use pipes.
by kduke
Fri Jul 01, 2005 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to invoke or run a job from Webpage..
Replies: 8
Views: 2076

My tool is stand alone to do what would take the Director and VPN to do otherwise.
by kduke
Fri Jul 01, 2005 8:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to invoke or run a job from Webpage..
Replies: 8
Views: 2076

I not sure exactly what you are looking for but DsWebMon will start and stop any job from the web. You can view logs and monitor or anything you want. You can get a free 30 day evaluation by going to m You can view the manual or downlaod it at: m m m One DsWebMon can control multiple DataStage serve...
by kduke
Fri Jul 01, 2005 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting DS log messages from DS and into Oracle.
Replies: 8
Views: 1877

The '//JOB.STARTED.NO' record stores a multivalued list of runs. The first one is the last run StartId = RtLogStartRec<1,1>. The end record is based on the last record in the file which is stored in '//SEQUENCE.NO'. You need to subtract one from this. I did not want to email more than 100 records. S...
by kduke
Fri Jul 01, 2005 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting DS log messages from DS and into Oracle.
Replies: 8
Views: 1877

Here is the core of it: open "DS_JOBS" to DsJobs else stop read JobRec from DsJobs, JobNameToLog else Call DSLogWarn(JobNameToLog:" not in DS_JOBS.", "JobControl") goto TheEnd end JobNo = JobRec<5> JobCategory = JobRec<3> FileName = JobNameToLog:'_Log' * -------...
by kduke
Fri Jul 01, 2005 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Status Code How to get this into a variable
Replies: 3
Views: 1438

Just in case you needed it.

Code: Select all

JOB_STATUS=`dsjob -jobinfo $PROJECT $DSJOB | head -1 | cut -d"(" -f2 | cut -d")" -f1`
by kduke
Fri Jul 01, 2005 12:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Canned Demo ?
Replies: 3
Views: 1437

Setup the tutorial and walk through it. Might help.
by kduke
Thu Jun 30, 2005 7:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replace function
Replies: 12
Views: 3171

Oracle REPLACE is similar to EREPLACE and CHANGE in Universe BASIC.

Yes!
by kduke
Thu Jun 30, 2005 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting DS log messages from DS and into Oracle.
Replies: 8
Views: 1877

You should be able to use a UV stage and write a job to extract from the RT_LOGnnn file to update Oracle. You need a batch job to feed the job number nnn to the UV stage. select * from RT_LOG#JobNo#; You need to trick DataStage to get the metadata. You need to create a q-pointer. It should not impor...
by kduke
Thu Jun 30, 2005 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage BASIC Command
Replies: 7
Views: 2114

Edit the routines which come with DataStage. Try to figure them out. Ask when you do not understand something.