Search found 15603 matches
- Thu Jun 15, 2006 10:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unwanted file sent in attachment
- Replies: 5
- Views: 1194
- Thu Jun 15, 2006 10:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Call job on a different server to run from sequence
- Replies: 2
- Views: 1185
- Thu Jun 15, 2006 10:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unwanted file sent in attachment
- Replies: 5
- Views: 1194
I think you need to stop using a microsoft outlook system for your mail. The file is not really sent but the way the MS mail server works with smtp makes this empty attachment get appended to the message. I know that you can turn this off but can't recall how - check MS pages for a description on ho...
- Thu Jun 15, 2006 10:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: checking non-existent field
- Replies: 5
- Views: 1977
- Thu Jun 15, 2006 9:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC Transaction Handling
- Replies: 4
- Views: 1248
- Thu Jun 15, 2006 9:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC Transaction Handling
- Replies: 4
- Views: 1248
- Thu Jun 15, 2006 8:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Have to remove 0's from varchar field
- Replies: 6
- Views: 2741
- Thu Jun 15, 2006 7:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS Oracle optimization (parallel processing / query rewrite)
- Replies: 4
- Views: 1127
Can you modify a copy of your job so that it doesn nothing apart from read your data and write it to /dev/null? That will give you the maximum speed and you can start narrowing down your possible sources of slowdowns. Also, are you actually reading your 28-row reference table for each data row and n...
- Thu Jun 15, 2006 7:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Set param from a Job control
- Replies: 5
- Views: 966
I wouldn't circumvent the advantages of chartered membership by sending the rest via e-mail. But in this case there wasn't anything much after that. You will need to put your validation logic into a job sequence and modify/fix the parameter values and then pass that (validated) value to your actual ...
- Thu Jun 15, 2006 7:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Backing up DataStage and projects
- Replies: 5
- Views: 2240
You are creating a disk snapshot of the project, not of the jobs - so the state would be "running" but there would actually be no running processes after a restore and you would need to reset that. The lock ensures that the physical hashed files are in a consistant state, but doesn't do anything abo...
- Thu Jun 15, 2006 7:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Set param from a Job control
- Replies: 5
- Views: 966
If I understand the problem you are modifying a job's parameter from inside the job itself (in the job control). This is not allowed and would explain why your changes aren't "seen" in other parts of the job. You will need to do your validation in a sequence and then pass the corrected values to the...
- Thu Jun 15, 2006 7:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: performance tuning of hash file
- Replies: 2
- Views: 1760
When writing to a hashed file you can increase speed by specifying a larger MINIMUM.MODULUS for the dynamic file, this can more than double the write speed. If your hashed file does not fit into your defined memory limits it will not load - you will see a message in the log file that tells you as mu...
- Thu Jun 15, 2006 6:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Number of Readers per node
- Replies: 5
- Views: 4063
- Thu Jun 15, 2006 4:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Backing up DataStage and projects
- Replies: 5
- Views: 2240
The DataStage engine has a facility to freeze all activity for a period of time, so if your backup mechanism is fast (or fast enough) you can activate this from dsadm/root with "uv -admin -lock" to immediately suspend all hashed I/O activity and "uv -admin -unlock" to restart it. The processes just ...
- Thu Jun 15, 2006 4:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Number of Readers per node
- Replies: 5
- Views: 4063
Never use anything less than a couple of minutes runtime for any timing comparison purposes! Your startup-time accounts for almost all your activity, so of course using more readers is going to add significantly to your times. Don't even think about using multiple processes before your runtime goes ...