Search found 53125 matches

by ray.wurlod
Thu Jan 10, 2008 4:15 pm
Forum: Site/Forum
Topic: Avoid Duplicate Posts
Replies: 1
Views: 1838

Avoid Duplicate Posts

Sometimes when you post to a thread posting.php times out. Do not Submit again - your post got there OK. The problem seems to be with updating something in the underlying database. Instead, use the Back button on your browser to return to your message (apparently unposted), then click on the link th...
by ray.wurlod
Thu Jan 10, 2008 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DecimalToDecimal conversion in Transformer
Replies: 7
Views: 7098

I am unaware of any mechanism for preventing Transformer stage from generating warnings.

I had assumed, because you said "tried the following with Modify too" that you had a Modify stage in the job. Well, now you do. Leave it there - it doesn't eat much.
by ray.wurlod
Thu Jan 10, 2008 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Substitution in Joins
Replies: 2
Views: 1119

This looks like default value substitution. First, though, can you be certain that the substitution is occurring after the Join stage, not before? If so, can you check these fields' extended properties to determine whether a Default is specified for the particular data types? A "default default" suc...
by ray.wurlod
Thu Jan 10, 2008 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequence issue
Replies: 15
Views: 4165

Have you tried using a custom trigger based upon the routine's return value?
Or an explicit Failure trigger so that you're explicitly handling the "failure"?
by ray.wurlod
Thu Jan 10, 2008 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use of unix commands in the execute command stage
Replies: 9
Views: 2070

Or, instead of the lcd, a UNIX cd command in the script but before the ftp command.
Or, instead of that, a UNIX cd command followed by the ftp command as the command to be executed from the stage.
by ray.wurlod
Thu Jan 10, 2008 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use of unix commands in the execute command stage
Replies: 9
Views: 2070

The cd subcommand within the here script is still necessary; it changes directory on the remote machine. But a local cd needs to be done somewhere.
by ray.wurlod
Thu Jan 10, 2008 10:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use of unix commands in the execute command stage
Replies: 9
Views: 2070

Arnd, please read Task 2 in the original post again. It is to that that I was reacting.

In the script you could include the cd command before the ftp command, or execute an FTP lcd subcommand once within the here script.
by ray.wurlod
Thu Jan 10, 2008 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DecimalToDecimal conversion in Transformer
Replies: 7
Views: 7098

Add an extra Specification to the Modify stage. This new Specification contains the single word NOWARN.
by ray.wurlod
Thu Jan 10, 2008 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to assign Header and Footer in Sequential file?
Replies: 8
Views: 4113

echo as a Filter command will close the file and therefore break the pipe. You need to use echo in before/after subroutines, not in a Filter command.
by ray.wurlod
Thu Jan 10, 2008 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Seq/Parameter Sets and Job
Replies: 14
Views: 5841

COMMON is a reserved word. Can you try using a different name for your parameter set?
by ray.wurlod
Thu Jan 10, 2008 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI fetched truncated data: solved it but wld need comment..
Replies: 8
Views: 3298

This is why we seek the output from DESCRIBE - to see what's really there.

Never assume anything, even that DataStage imports table definitions accurately every time. Particularly not via OCI plug-in.
by ray.wurlod
Thu Jan 10, 2008 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use of unix commands in the execute command stage
Replies: 9
Views: 2070

Executing the cd command in a separate Execute Command stage is a waste of time and effort. It opens a new shell, executes the cd command in that shell, closes the shell, and returns. The cd command must be part of the command sequence that runs the script, or within the script itself. For example: ...
by ray.wurlod
Thu Jan 10, 2008 10:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Slow Down
Replies: 6
Views: 1769

There are four major resources: CPU, memory, disk throughput and network throughput. Bottlenecks may also occur in database servers due, among other reasons, to locks. Do not concentrate solely on memory. A system that is CPU-bound may also be memory-bound, but you would not detect the latter until ...
by ray.wurlod
Thu Jan 10, 2008 4:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Slow Down
Replies: 6
Views: 1769

Without a baseline set of measures from the "good times" it's not going to be a lot of help. Your system administrator will be able to brief you on the various tools and techniques; you might like to review the man pages for the following commands: top iostat vmstat netstat Of course it may have not...
by ray.wurlod
Thu Jan 10, 2008 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue in removing new line character
Replies: 5
Views: 3473

Change your line terminator to DOS-style in the stage properties of the Sequential File stage.