Search found 15603 matches

by ArndW
Thu May 31, 2007 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset the Job
Replies: 7
Views: 2828

What is causing the abort in the sequence that tries to reset your failed job? Could you post the error message that is generated?
by ArndW
Thu May 31, 2007 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting a before-job routine value in a job parameter
Replies: 2
Views: 808

This approach will, unfortunately, not work due to the way DS jobs are executed at runtime.

What you can do is compute the value of the stage variable in a sequence, then pass it into the job as a parameter and use the parameter value as the initial value for the stage variable.
by ArndW
Thu May 31, 2007 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file error
Replies: 10
Views: 2771

... But I can't find the hash file that it created. I went to Manager and checked, can't find the hash file... The Manager will not point to the hashed file location, it will contain the metadata for that hashed file if you decide to load it. You can import the metadata from the physical hashed fil...
by ArndW
Thu May 31, 2007 3:36 pm
Forum: Site/Forum
Topic: download files?
Replies: 3
Views: 2796

No, not at the moment.

There have been thoughts about doing this and discussions on the possible structure and content, but this has not been implemented to date.
by ArndW
Thu May 31, 2007 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP a file in a Sequence Job
Replies: 2
Views: 1089

The FTP stage in DataStage has the advantage that it treats the data on a line-by-line basis, whereas the command-line FTP interface just moves the file as a whole. When using the DS FTP Stage it means that a long-running FTP can be processed row by row as it comes in or goes out instead of having t...
by ArndW
Thu May 31, 2007 4:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run the job in unix
Replies: 5
Views: 1003

The syntax of the previous posters message isn't quite correct, you can look up the command line in the documentation or just execute dsjob with no options to get the help.
try dsjob -run -mode NORMAL <project> <job>
by ArndW
Thu May 31, 2007 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: while loading data from sybase to Oracle/Sql last byte is tr
Replies: 2
Views: 704

There are a number of possibilities, but you will need to supply some more information. 1. You posted in the PX but specified a server job. Which type is it? 2. Are you using a NLS DataStage engine and databases? 3. If you read the Sybase source and write to a flat file, is the data correct? (There ...
by ArndW
Thu May 31, 2007 1:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange warning from a sequential file load
Replies: 5
Views: 2217

It looks like you declared 4 columns at 20bytes apiece in your metadata for the fixed width, and this is incorrect and being flagged by DS.
by ArndW
Wed May 30, 2007 5:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time out error encountered while running a job sequence
Replies: 4
Views: 1471

I would be surprised if a sequence that starts 3 jobs concurrently will overload a system - unless there are other things going on that use a lot of resources. In this case we don't know if the system was just less busy after the recompile (which is my guess) or if the object code was corrupted in s...
by ArndW
Wed May 30, 2007 5:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation Error in a Sequence Job
Replies: 3
Views: 959

At first thought I would guess that the job has been corrupted internally. You can make a copy of the job, then remove single components until the error goes away to identify which stage might be causing the problem.
by ArndW
Wed May 30, 2007 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage Problem
Replies: 3
Views: 903

Is the problem that no records are going out of the modify stage or that the output file has records in it when none are written by the job? How many rows are being read by the job? Do you have "append" set to the target sequential file?
by ArndW
Wed May 30, 2007 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Abort after 129 iteration
Replies: 7
Views: 1977

Odd, in this case I would have expected to see an entry in the job log for the output of the previous run.

If you replace the stage where you call your job with a dummy stage (i.e. a command stage that just issues an empty command) does the job still fail?
by ArndW
Wed May 30, 2007 12:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time out error encountered while running a job sequence
Replies: 4
Views: 1471

That is a good hypothesis, but would only hold true if it failed with a -14 every time. Usually this error is produced when a machine is overloaded, i.e. when it is so busy that new tasks are not started within DS limits.
by ArndW
Wed May 30, 2007 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Abort after 129 iteration
Replies: 7
Views: 1977

Try resetting the sequence and then looking at the entry titled "from previous run..."

p.s. This is a volunteer site, so using the word urgent in a post here usually results in getting a much slower response than normal, and many expert posters here might even decide not to reply.
by ArndW
Tue May 29, 2007 10:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: invocation id
Replies: 6
Views: 1208

Let us assume you have a simple job that you declare as multi-instance. It accepts a source file name as a parameter and all it does is read the sequential file, perform some transformations onto the data and load it into a database table. You can start this one job several times in parallel, with e...