Search found 4992 matches
- Wed Apr 07, 2004 4:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Purging of DataStage Log from Unix Script
- Replies: 14
- Views: 12853
I have a utility available for mass-updating the auto-purge setting. This works for DS 5 and 6, don't know yet about 7. USE AT YOUR OWN RISK. The author makes no guarantee to results, and make sure you have your project backed up whenever attempting internal hacking. Paste this into a BATCH job, and...
- Tue Apr 06, 2004 7:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can the size of hashed file cache be controled?
- Replies: 4
- Views: 1586
Re: Can the size of hashed file cache be controled?
When a hashed file "pre-load file to memory is Enabled", a warning message as the following is showed. This hashed file is very small (only three rows in it). It doesn't need 128M cache. The hash file will use the minimum amount of memory necessary to cache the file. It will not EXCEED this setting...
- Tue Apr 06, 2004 9:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Running and resetting jobs from within job control
- Replies: 3
- Views: 1347
- Tue Apr 06, 2004 9:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Starting a Windows DataStage job from Unix.
- Replies: 10
- Views: 4935
Re: Answers?
I did find a *neat* way to write a Python script which accomplishes exactly what I want. Thanks anyway. Well don't tease us. It's your obligation to share with everyone here anything valuable or beneficial to the community. Could you please post a summary of your solution, as well as the source cod...
- Mon Apr 05, 2004 11:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Checking for nulls
- Replies: 3
- Views: 1296
- Mon Apr 05, 2004 10:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Starting a Windows DataStage job from Unix.
- Replies: 10
- Views: 4935
- Wed Mar 31, 2004 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UV Stage
- Replies: 3
- Views: 1852
- Wed Mar 31, 2004 2:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calc between dates
- Replies: 3
- Views: 1339
- Wed Mar 31, 2004 11:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Question on Sql Query Session used in Datastage
- Replies: 5
- Views: 1041
- Wed Mar 31, 2004 11:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CLEAR.FILE
- Replies: 8
- Views: 3090
- Wed Mar 31, 2004 11:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Question on Sql Query Session used in Datastage
- Replies: 5
- Views: 1041
If you have a query that does not release the DataStage thread, you will find a zombie process. If you stop a job, always check by doing "ps -ef|grep phantom" and look to see if a thread of a job is still running. Most likely you would have seen this. A "kill -15" on this process might release the q...
- Wed Mar 31, 2004 11:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lookup & update of HashFile from same transformer
- Replies: 13
- Views: 3896
Yes, just keep in mind that read and write caching will prevent a subsequent row from "seeing" the preceding row if it's trying to reference it. You must not use caching if you need to reference a precedingly written row. If you don't care, then use write-delay caching, and if necessary, you can use...
- Wed Mar 31, 2004 11:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CLEAR.FILE
- Replies: 8
- Views: 3090
- Wed Mar 31, 2004 11:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CLEAR.FILE
- Replies: 8
- Views: 3090
Re: CLEAR.FILE
1. Has this command the same efect than delete "manually" all files in &PH& directory? Yes 3. I found in this foro the following recomendation "regularly clear the contents of the &PH& and &SAVEDLISTS& directories and the directory whose pathname is recorded against the UVTE...
- Wed Mar 31, 2004 9:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Differences between Job control routines and Job scheduler
- Replies: 3
- Views: 1286
How about this: Job control routines allows INFINITE flexibility in doing what you want. Job sequencers allow INFINITE flexibility, as you only can do what the stages allow (within reason). Job control routines allow you to absolutely control job execution in ways that the sequencer can't even dream...