Search found 4605 matches

by kduke
Sun Dec 16, 2007 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to associate headless user to the projects
Replies: 7
Views: 1744

In UNIX they should all be in separate groups. The recommended way is to have all in the same group as dsadm. So if that is dstage then these users have to be in dstage group as well as this new group. So lets say the new user is payrolluser then create a payrollgroup as well as dstage. Now create a...
by kduke
Wed Dec 12, 2007 7:10 pm
Forum: General
Topic: Have anyone out there created a server job to populate a tab
Replies: 6
Views: 1650

By the way it is a free download from my tips page below my signature.
by kduke
Wed Dec 12, 2007 7:09 pm
Forum: General
Topic: Have anyone out there created a server job to populate a tab
Replies: 6
Views: 1650

EtlStats is about 40 jobs. One of which is used to gather stats about job runs. It populates 3 tables ETL_JOB_HIST, ETL_ROW_HIST and ETL_PARAM_HIST. It also populates 3 hashed files so you can build your own restartable job logic. There are a whole bunch of other jobs which help extract metadata fro...
by kduke
Tue Dec 11, 2007 11:27 pm
Forum: General
Topic: Have anyone out there created a server job to populate a tab
Replies: 6
Views: 1650

Do a search on EtlStats.
by kduke
Tue Dec 11, 2007 11:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using SQL queries in job parameters
Replies: 3
Views: 1400

You usuaully need to land the value into a sequential file then read that value in job control or a routine to feed it into a parameter.

Job Sequence

JobA Select Max(id) from whatever => SeqFileA
|
V
RoutineA Read Value set Arg1 = SeqFileA.value
|
V
JobB (Set parameter = RoutineA.Arg1
by kduke
Tue Dec 11, 2007 11:12 pm
Forum: General
Topic: Regarding UNIX and Scripting
Replies: 3
Views: 964

My favorite book is called "Tips of the UNIX Masters". It is out of print but I have seen it used on Amazon.
by kduke
Mon Dec 10, 2007 6:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RowProcCompareWithPreviousValue Routine not working...
Replies: 14
Views: 2908

You said you used it on 3 fields. Is this in one job? If so then you need to do what I suggested.
by kduke
Fri Dec 07, 2007 9:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Save Job
Replies: 7
Views: 2701

Have you checked your permissions to see if they have changed?
by kduke
Fri Dec 07, 2007 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Save Job
Replies: 7
Views: 2701

If EditServ.impl.JobDefnImpl@79427df4 is your job name then that is your problem. Eliminate the special characters.
by kduke
Fri Dec 07, 2007 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RowProcCompareWithPreviousValue Routine not working...
Replies: 14
Views: 2908

If you look at this routine it uses @USER0. This is sort of a global variable for a connection to DataStage. You need to copy this routine and use @USER1 and @USER2 so you can have 3 copies of this routine and they will not step on each other.
by kduke
Fri Dec 07, 2007 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: log information
Replies: 5
Views: 2354

I have a job included with EtlStats which will check to see if any job failed in a sequence called EtlChkSeqJobsNotRun. It is all job control so you have source code. It will email the log file as an html attachment any group of people you want if a job fails. So the logic to figure out which job is...
by kduke
Fri Nov 30, 2007 5:04 pm
Forum: General
Topic: missing image in report
Replies: 4
Views: 1281

There is a script called DSaveAsBmp.bat on my tips page which will do this for you. I would convert the BMP to a GIF.
by kduke
Fri Nov 30, 2007 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load Audit tables in Shared Container
Replies: 3
Views: 1337

Download EtlStats and search for how to use it.
by kduke
Fri Nov 30, 2007 5:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can not generate reports using 7.5.2
Replies: 6
Views: 1883

The script DsJobReport.bat will do all jobs in a project but you can do it yourself if you want.