Search found 63 matches

by MAT
Tue Mar 25, 2003 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where can I find some document on devloping plugin
Replies: 13
Views: 2996

Hi Ray,

I would like to get the manual.

Thanks

MAT
by MAT
Tue Mar 25, 2003 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job within routine
Replies: 7
Views: 2850

Sure you can Include the following at the top of your routine (jobcontrol library) : $INCLUDE DSINCLUDE JOBCONTROL.H And use the following functions: * Attach hjob = DSAttachJob(JobName,DSJ.ERRFATAL) * Run ErrCode = DSRunJob(hjob, DSJ.RUNNORMAL) * Wait for termination ErrCode = DSWaitForJob(hjob) * ...
by MAT
Mon Mar 24, 2003 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage CPU Count
Replies: 2
Views: 1086

Hi,
If your are refering to CPU count you read from DS Administrator, it refers to your license. It is the number of processors you are allowed to use with DS. If your hardware is below or equal it will work fine.

Regards

MAT
by MAT
Mon Mar 24, 2003 9:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Logs
Replies: 6
Views: 2429

Christophe, I am not aware of a file for storing job logs but you can access them easily with DataStage Basic. You can use several Basic functions depending on what you want. In my project, I use a routine to attach the job for which I need the log. After DSAttachJob(). You can attach a job after it...
by MAT
Thu Mar 20, 2003 1:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JobList in job sequencer
Replies: 7
Views: 1874

Hi, Yes, I tried using DSMakeJobReport. Datastage tells me the job has no stages, I only get start time, end time but nothing about job logs. The only way I've found is by using DSGetLogSummary and filtering the array afterwards. Finally, I decided to "hardcode" the names of my jobs in a v...
by MAT
Wed Mar 19, 2003 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JobList in job sequencer
Replies: 7
Views: 1874

What I am trying to do here is to generate a full report about a sequencer. We have to do this because even if my team is developping the entire project, we are not the ones who will be watching over the servers when DataStage runs it. Production guys will need to know quickly what is going wrong (i...
by MAT
Tue Mar 18, 2003 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JobList in job sequencer
Replies: 7
Views: 1874

JobList in job sequencer

Hello all,

Does anyone know if it is possible to obtain a list containing names of the job activities within a job sequencer using BASIC functions?

Thanks

MAT
by MAT
Mon Mar 17, 2003 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Insert Date and Timestamp
Replies: 4
Views: 3622

thanks guys. It worked.

MAT
by MAT
Fri Mar 14, 2003 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Insert Date and Timestamp
Replies: 4
Views: 3622

DB2 Insert Date and Timestamp

Hi, I need to load seq files in DB2 tables. My inserts work well except when i have Date and Timestamp formats. I receive a SQL error, saying it does not recognize the datetime format. It is surprising because I do not have trouble loading these formats normally. Do I need a special formatting for D...
by MAT
Wed Mar 12, 2003 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel jobs in sequencer
Replies: 9
Views: 3937

Thanks Vincent, I am now fairly certain that my problem was coming from the calls to DSWaitForJob() within my routine. With this structure, I could not ask for DS to run many jobs at the same time, the server was always waiting for a job to finish. Problem is I had to use DSWaitForJob() to get the s...
by MAT
Tue Mar 11, 2003 9:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Files and encrypted parameters
Replies: 5
Views: 2688

Thanks Kev...it may not be what I wanted to hear but it confirms what I was thinking [:(]. I guess I'll ask the folks from Ascential about what can be done about it. The team and especially the client does not like the idea of having server passwords in plain text on UNIX and it is something I need ...
by MAT
Tue Mar 11, 2003 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Files and encrypted parameters
Replies: 5
Views: 2688

Files and encrypted parameters

Hi, Using a file to store parameters for my jobs, I would like to store in the file encrypted passwords the way DataStage does it. Obviously for reading and writing them after. Is it possible? I know someone said once he had isolated DataStage encryption function? Does anyone know more about it? Tha...
by MAT
Tue Mar 11, 2003 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel jobs in sequencer
Replies: 9
Views: 3937

Thank you all, Here is some precision, I am using a single routine similar to UtilityRunJob made by the sdk. Using "Routine Activity" Jobs in a Job Sequencer on DS Server. I call the same routine every time with the name of the job I want to run. I do not run the same job twice in one sequ...
by MAT
Mon Mar 10, 2003 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel jobs in sequencer
Replies: 9
Views: 3937

thanks for a quick reply!! I am using Server. The problem is not about running jobs in parallel, it's when running them from a routine. It this case, they always run one after another. Also, my company is moving to PX for the next project, are you saying there is a bug about running parallel jobs in...
by MAT
Mon Mar 10, 2003 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel jobs in sequencer
Replies: 9
Views: 3937

Parallel jobs in sequencer

Hi, I am running my jobs with a routine controling them to be able to set parameters and get some info about links and other things. My problem is that when I create my sequences, I use the same routine to call all my job but I would like them to run in parallel. When I run my jobs without a routine...