Search found 42189 matches

by chulett
Mon May 21, 2007 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hashed file to Static Hashed file conversion
Replies: 9
Views: 2869

Nope. If you've found a combination that works for you, go with it. :wink:
by chulett
Mon May 21, 2007 7:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to kill or release a DS job.
Replies: 7
Views: 2516

Make sure you understand that 'release' is a specific operation and not at all related to 'unlocking' a locked job.
by chulett
Mon May 21, 2007 7:01 am
Forum: Site/Forum
Topic: Job Type Selection Feedback
Replies: 3
Views: 2356

I think the biggest confusion comes when it is set improperly regardless of forum. Or for people who assume based on the forum. :wink:
by chulett
Mon May 21, 2007 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance
Replies: 14
Views: 6593

The problem is while running the whole process the actual jobname say "abc" changes to abc.InvocationId.Thus the script and the sequencer job fails to run the job and it fails This isn't a 'problem' per se, it is the way multi-instance jobs work. Did you take a job that was MI and turn that off wit...
by chulett
Mon May 21, 2007 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection to DB2 using a routine
Replies: 8
Views: 2763

Then just do it. Correct your dsenv file so that the 32bit libraries are used for the connection, you'll be fine.
by chulett
Mon May 21, 2007 6:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage API -c program.
Replies: 16
Views: 8233

That would be the Advanced guide, actually.
by chulett
Mon May 21, 2007 6:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance
Replies: 14
Views: 6593

Confusing. Is your Sequence job multi-instance? Shouldn't the two new jobs be multi-instance as well? What Invocation ID are you expecting to pass to the four jobs, the one used for the Sequence job itself? :?
by chulett
Mon May 21, 2007 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Poor performance of Hash file?
Replies: 8
Views: 1365

What is your Target? Have you confimed the lookups are the issue by replacing it with a Sequential File stage?
by chulett
Mon May 21, 2007 6:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection to DB2 using a routine
Replies: 8
Views: 2763

Since you've started a new thread for this, answers are over there. I still don't understand why you continue down this path when you've been told several times it is completely unnecessary. At least for the reason you've given. :?
by chulett
Mon May 21, 2007 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ConnectToDB2 routine
Replies: 9
Views: 2540

In other words, you need to have the routine tell you what went wrong. Plus... Where is DBSCHEMA being used? What user/password is it connecting as? :?
by chulett
Mon May 21, 2007 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Hashed file to Static Hashed file conversion
Replies: 9
Views: 2869

As Ray noted, the behaviour you've seen is related to having the Write Cache option enabled. It goes very quickly as the records are written to memory first, then once complete (or the cache fills) they are flushed to disk as a separate step, which is why you don't see the record count change. First...
by chulett
Mon May 21, 2007 6:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load multiple tables
Replies: 11
Views: 2958

Why? Ok... SELECT * FROM #$SCHEMA_NAME#.#SrcTblNm# WHERE ATTRIBUTE_NAME = '#DSJobInvocationId#' AND Update_DT >= (select TO_DATE(max_date,'DD-MON-YYYY') from PARAM_TABLE where Tgt_Table = '#DSJobInvocationId#') I'm assuming the date mask is correct from your previous post, you'd need...
by chulett
Sun May 20, 2007 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load multiple tables
Replies: 11
Views: 2958

You are converting something that is already a DATE to a DATE. Simplify your SQL: SELECT * FROM #$SCHEMA_NAME#.#SrcTblNm# WHERE ATTRIBUTE_NAME = '#DSJobInvocationId#' AND Update_DT >= (select max_date from PARAM_TABLE where Tgt_Table = '#DSJobInvocationId#') And you need to use single quotes...
by chulett
Sun May 20, 2007 9:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call to input link returned numeric error code: 19
Replies: 7
Views: 5027

Thought I would revisit this and post the resolutions to all of these issues. The final piece of the puzzle was found in this thread - thanks to ttk1973 for posting that. Both of these seem to be specific to HP-UX 11.11 so keep that in mind if you think you are having a similar problem. 1) Bus Error...
by chulett
Sun May 20, 2007 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Abort Help
Replies: 2
Views: 779

For any 'abnormal abort', the first thing you need to do is Reset the aborted job from the Director and post any 'From previous run...' messages that appear in the log. Otherwise we all (yourself included) have to guess the reason behind the abort. It is always best if you cut and paste the actual e...