Search found 9 matches

by peterh
Tue Nov 25, 2003 4:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: (RESOLVED) rename of designer stages font in size 50 or more
Replies: 14
Views: 3483

I experienced the same problem. I did not check it yet but it seems that is a screen resolution problem.

Peter
by peterh
Wed Nov 05, 2003 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Newest Log
Replies: 2
Views: 1369

Thanks, Amos.
Code is used in job controler. I'm going to try second option - search the backwards.

Peter
by peterh
Wed Nov 05, 2003 3:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Newest Log
Replies: 2
Views: 1369

Newest Log

Hello, I'm trying to get last log event. The problem is that job is multi instance and all instances are running concurrently and when I used following piece of code: EventId = DSGetNewestLogId(DSJ.ME,DSJ.LOGANY) LastLog = DSGetLogEntry(DSJ.ME,EventId) time to time (accidentally) I have got LastLog ...
by peterh
Thu Aug 07, 2003 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wait For File Activity
Replies: 4
Views: 3002

You can build a routine which construct the file name (based on the date for example) and use WaitForFile routine inside code. Result (file name) could be passed as parameter to the next job.
WaitFor File does not support wildcards as I know.

Peter
by peterh
Thu Aug 07, 2003 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage in cluster
Replies: 4
Views: 2336

Datastage in cluster

Is it possible to configure and run Datastage server in the Microsoft Windows cluster environment? Is there some experience?
Thanks a lot in advance.
Peter
by peterh
Wed Mar 26, 2003 2:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job within routine
Replies: 7
Views: 2838

Thanks for responses. I realize that job in routine will be very slow with row processing. I would like to use it by different way. I'm going to design very complex sequencer with several jobs and lot of OS commands. Since I would like to have some overall statistics for jobs monitoring (in the db t...
by peterh
Tue Mar 25, 2003 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job within routine
Replies: 7
Views: 2838

Thanks, MAT. I did not check RunJob utility first...
by peterh
Tue Mar 25, 2003 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job within routine
Replies: 7
Views: 2838

Job within routine

Hello,

I would like to know if I can attach/run job within server routine.

Thanks in advance for any advice

Peter
by peterh
Thu Feb 13, 2003 2:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading from Parameter File
Replies: 2
Views: 1577

Here is piece of code which should help you... Peter * Get Parameters from file ParFile=DSGetParamInfo(DSJ.ME,"ParamFile",DSJ.PARAMVALUE) eof=0 LineNum=1 openseq ParFile to fileID else abort loop until eof readseq IDLine from fileID else eof = 1 IF LineNum=1 THEN TDir=TRIM(FIELD(IDLine,&qu...