Search found 15603 matches

by ArndW
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

Sorry, I thought I had made it an un-premium post as it didn't really answer your question. I've changed it now.
by ArndW
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

Juls, the dsjob command lets you specify server, userid and password to do any of the actions on a remote machine. Please look at page 19-140 of the Server Job Developer's Guide for more information.
by ArndW
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...
by ArndW
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

runtime column propagation looks like the probable culprit.
by ArndW
Thu Jun 15, 2006 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Transaction Handling
Replies: 4
Views: 1248

The commit might affect your results if you are reading a record and then writing it back or if you are doing multiple updates to the same record. This error shouldn't be occurring unless you do have one of the two aforementioned conditions - or have another process working on the table as well.
by ArndW
Thu Jun 15, 2006 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Transaction Handling
Replies: 4
Views: 1248

Option #2 won't commit until the end of the job.

What exact error are you getting with #1? Are you reading these records as well? Which database is behind the ODBC layer and are you doing updates, upserts or inserts?
by ArndW
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

You can also do a TRIM(In.Column,'0','L') which will remove all leading "0" characters from your column.
by ArndW
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...
by ArndW
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 ...
by ArndW
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...
by ArndW
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...
by ArndW
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...
by ArndW
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

The times depend upon repartitioning after the read as well, and we don't know what has been done with the data.
by ArndW
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 ...
by ArndW
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 ...