Search found 42189 matches

by chulett
Thu May 08, 2008 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using database sequence
Replies: 10
Views: 2466

I don't have DB2 here but don't recall it using numbered parameter markers, I thought that was strictly an Oracle thing. Are you sure that :1 shouldn't be a ? instead? :?
by chulett
Thu May 08, 2008 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait for file stage
Replies: 2
Views: 1135

Re: Wait for file stage

mydsworld wrote:So, does 'Wait for file' waits for the receipt of the file in full?

No, it simply checks for existence.

As noted, the typical solution is the use of a zero byte 'flag' or 'semaphore' file sent after the main file. When it is received, you know it is safe to go get the main file.
by chulett
Thu May 08, 2008 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Rename Job Category
Replies: 2
Views: 1155

I would just bite the bullet and do this through the GUI, it's not really that bad and it will be over before you know it. :wink:

You could also export the jobs in question and use an editor on the .dsx file to make the changes noted.
by chulett
Thu May 08, 2008 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run set of jobs based on input file using loop
Replies: 7
Views: 2553

opdas wrote:how do I exit from the loop? using terminator activity? but this would abort the sequence. Can I exit grace fully without aborting the sequence.

Just do a conditional branch to something 'outside' the loop, past the End Loop stage, to get out early and gracefully.
by chulett
Thu May 08, 2008 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using database sequence
Replies: 10
Views: 2466

Then perhaps that's a PX restriction, what you've done would work just fine in Server. It matches the columns in the link to the parameter markers in your sql, it doesn't give a hoot how many column names you mention.
by chulett
Thu May 08, 2008 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file creation & update clarification
Replies: 9
Views: 2482

Stop by my house some time. I think I found the earliest mention that I recall making here when discussing generating test data. It was then extended to solve this situation where you read and update a hashed file in the same job... and yah it's quite cool when the light-bulb goes off in your head a...
by chulett
Wed May 07, 2008 11:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: a non-numeric character was found where a numeric was expect
Replies: 12
Views: 10403

A search for that error message would turn up quite a number of hits, I'd wager. And most would lay out the steps needed to check what code is causing the problem. For example, this one from yesterday:

http://www.dsxchange.com/viewtopic.php?t=118656
by chulett
Wed May 07, 2008 10:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: a non-numeric character was found where a numeric was expect
Replies: 12
Views: 10403

Post the complete error message, it should state a TRANS file and line number where the phantom error is occurring.
by chulett
Wed May 07, 2008 10:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using database sequence
Replies: 10
Views: 2466

Sounds like you still have both columns in the output link.
by chulett
Wed May 07, 2008 10:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: COnver Server routine to parallel
Replies: 7
Views: 1749

Where / how often do you call this? Seems to me you may be able to leave it as and call it from a Sequence job, depending on the answer.
by chulett
Wed May 07, 2008 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequence -
Replies: 3
Views: 1715

You need to check the individual job logs that had the warnings, you can't get those details from the Sequence's log.
by chulett
Wed May 07, 2008 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduling through Director
Replies: 1
Views: 705

Manually, month by month.
by chulett
Wed May 07, 2008 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executable file of a DS Job
Replies: 26
Views: 17921

Re: Executable file of a DS Job

pravin1581 wrote:When we run any DS job from the designer, where is the executable file of that job is created and what is the format of that file.

Ok, I'll bite... why seek this knowledge, Grasshopper?
by chulett
Wed May 07, 2008 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use Basic Transformer in PX job
Replies: 8
Views: 2226

I don't see how you can expect a patch to fix a problem on an unsupported platform, but it can't hurt to ask.
by chulett
Wed May 07, 2008 11:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file creation & update clarification
Replies: 9
Views: 2482

We've documented this technique before here. And all you need for the constraint is @FALSE as no rows need to be processed simply to create or clear the existing hashed file, the link just needs to be 'opened'. 8)