Search found 15603 matches

by ArndW
Thu Nov 03, 2005 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence thinks job is not runnable
Replies: 6
Views: 2152

Yes, I have seen this type of problem before - it happens when calling a multi-instance job with the same instanceid that is running at that time. The first time I saw this it was in a similarly confusing scenario as yours - sometimes it would work and sometimes it wouldn't and it was difficult to f...
by ArndW
Thu Nov 03, 2005 5:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile Migration
Replies: 3
Views: 883

Sreenivasulu, when you create hashed files you have the option of creating them in the project directory or at some path. It has always been recommended to use the path option for hashed files for a number of reasons, the most important being (in my opinion): (a) your DS project directory remains se...
by ArndW
Thu Nov 03, 2005 4:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reference lookup generated %d rows.
Replies: 3
Views: 842

singhald, the message means exactly what it reported; you are doing a reference lookup but the key(s) that you used didn't return just one row but several. Since datastage uses only one value it had a to choose just one of those returned rows - in this case the last returned one. You need to change ...
by ArndW
Thu Nov 03, 2005 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is not being transferred?
Replies: 12
Views: 1981

Nirpendra,

please post your solution so that others might profit should they have the same problem.
by ArndW
Thu Nov 03, 2005 4:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile Migration
Replies: 3
Views: 883

Hashed files can be migrated. Without more information from you no more detail can be supplied. One version to another? One platform to another? One project to another? With or without data? Back to a previous version? Combination of some of the above? There are also several posts that searching for...
by ArndW
Thu Nov 03, 2005 4:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is not being transferred?
Replies: 12
Views: 1981

Nripendra, I am trying to help you figure out your problem. It seems that your settings for a fixed length sequential file aren't working, since you posted the question here. Doesn't it seem logical that you start off the debugging process by getting the job so that it does write to a file, and then...
by ArndW
Thu Nov 03, 2005 3:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is not being transferred?
Replies: 12
Views: 1981

So now it has been narrowed down to the sequential stage and it's settings. If you modify this to write a default type file (comma-separated, quoted strings, non-fixed length, no other attributes set and you output this to your /tmp directory; what does "wc {yourfilename}" show?
by ArndW
Thu Nov 03, 2005 3:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About Modify stage function
Replies: 3
Views: 1360

The old PX documentation is wrong, the NullToValue() won't work there. You can use Handle_Null() with the same syntax.
by ArndW
Thu Nov 03, 2005 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is not being transferred?
Replies: 12
Views: 1981

Nripendra,

I don't understand what you mean by the dataset giving you the same output - does that mean that the dataset is empty? Is it created? Does your Director Monitor or Designer link view show that rows are actually being written to the output link (3rd time I've asked)?
by ArndW
Thu Nov 03, 2005 2:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: filter command question ?
Replies: 18
Views: 4295

The script called in the filter stage does "things" and calls Cosort, which will consume the input and generate an output file upon input stream completion, not sending any data rows to the sequential file, this is probably triggering the sequential file error.
by ArndW
Thu Nov 03, 2005 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data is not being transferred?
Replies: 12
Views: 1981

Nripendra, we are trying to narrow down the possible causes, but it does need to work both ways. You have just responded that the job is running fine, but it isn't. Does the Monitor or Designer at runtime show the same number of rows going out of the transformer as go in? Change your target stage to...
by ArndW
Thu Nov 03, 2005 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed a keylookup for record
Replies: 8
Views: 8257

Senthil,

can you run your job in production but point it to the original development database and see if the error might be due to a database version or configuration issue?
by ArndW
Thu Nov 03, 2005 1:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Roolback in sequencer
Replies: 3
Views: 1357

Hello Mimi, The usual method of using the database mechanism of transaction to define what might be rolled back on an abort cannot be used in your case, since the jobs that needs to be rolled back might already be finished when your sequence gets an error. The is no builtin mechanism in DataStage th...
by ArndW
Wed Nov 02, 2005 2:10 pm
Forum: Site/Forum
Topic: Write a Book!
Replies: 40
Views: 20404

Ray,

the thread police aren't going to catch us. We're on a mission from God :twisted:

That, or how about "It's 106 miles to Chicago, we've got a full tank of gas, half a pack of cigarettes, it's dark and we're wearing sunglasses. We are ready to do some serious DataStage consultation."
by ArndW
Wed Nov 02, 2005 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: filter command question ?
Replies: 18
Views: 4295

Hello Kaps, since you have CoSORT you should use it - it really does improve sort performance. On the other hand, I think your method of using a filter in this case isn't the optimal approach, at least initially. I would recommend starting off with writing the data to the sequential file and then us...