Search found 42189 matches

by chulett
Tue Apr 03, 2007 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: match like statement in lookup
Replies: 7
Views: 1825

ray.wurlod wrote:You can build your Lookup File Set on the five digit key, and allow duplicates.

Exactly what was already suggested. Without the 'allow duplicates' part as that didn't seem necessary. I guess if it comes from Ray it's a 'good point'. :wink:
by chulett
Tue Apr 03, 2007 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between DS Transform and DS Routines
Replies: 2
Views: 861

Yes. And I'm sure it's been explained here a number of times. For grins I did a search and found something I started 5 years ago when all there was was the Oliver mailing list. It will look a little strange because of the email nature of the exchange, lots of things repeated, but it goes deep into t...
by chulett
Tue Apr 03, 2007 6:16 am
Forum: General
Topic: DSSendMail
Replies: 9
Views: 6286

All of the actual parameter names are missing from your string. And you've got an odd mixture of quotes there. Open up the DSSendMail routine by double-clicking on it in the Administrator and check the Long Description for details on exactly how to call this routine.
by chulett
Tue Apr 03, 2007 6:09 am
Forum: General
Topic: Row by row processing in sequence job
Replies: 13
Views: 4722

yes I have few records in the table. My requirement is to develop the job using parallel extender not server. [sigh] Shouldn't you be using the appropriate tool for the job? Don't you have more than one tool in your toolbox? You need to read a teeny number of records and send emails and you are "re...
by chulett
Mon Apr 02, 2007 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance while loading target database table
Replies: 30
Views: 10134

I don't see an answer to the 'what is your update action' question. Are these strictly 'Insert without clearing' records? If so, why not bulk load them? :?
by chulett
Mon Apr 02, 2007 7:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to split single row of input into 2 output rows
Replies: 2
Views: 1069

Oh, and please delete the duplicate post in this forum before someone replies to it.
by chulett
Mon Apr 02, 2007 7:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to split single row of input into 2 output rows
Replies: 2
Views: 1069

How is this any different than your other post in the Server forum? Hint: nothing. Granted, you should have started here, but let's not start all over again here. Folks, if you feel the need to contribute to this thread, please do so in the linked post, not here. Or at least check it first.
by chulett
Mon Apr 02, 2007 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: match like statement in lookup
Replies: 7
Views: 1825

Re: match like statement in lookup

The lookup and join stages appear to expect "keys" but I havnt been able to figure out how to do a lookup based on a LIKE statement. Any suggestions? What our friend should have just come out and said directly is - you can't. Lookups are equi-joins. He's trying to offer you a solution where the loo...
by chulett
Mon Apr 02, 2007 7:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split a single row of record in to two row of output
Replies: 18
Views: 5801

By using Append option in one file will take care of this. Err... two links writing to the same file at the same time, one with the append option? No can do, my friend. If you could manage that in a serial fashion where the overwrite link completes before the append link starts, only then is that a...
by chulett
Mon Apr 02, 2007 6:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Applying Project Auto-purge to existing jobs
Replies: 3
Views: 955

Nope, recompiling isn't the answer. The long way? Export and re-import all of your jobs, they'll pick it up then. Or if you are interested in a more elegant solution, get access to Ken Bland's website (he posts as 'kcbland' here) and download his Job Control Utilities package. One of the many things...
by chulett
Mon Apr 02, 2007 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Stage
Replies: 2
Views: 860

Is this a Server or Parallel job question? They have slightly different answers. Typically: Server: Folder -> XML Input -> Transformer -> ODBC Parallel: Sequential -> XML Input -> [optional something something] -> ODBC Use the first stage to supply just the filename(s) to process. Set the XML Input ...
by chulett
Mon Apr 02, 2007 5:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal Error 39202
Replies: 2
Views: 1601

It would help if you explained under what circumstances you got this error. What was the complete error you received? What other information was logged at the time, either immediately before or after it?
by chulett
Mon Apr 02, 2007 5:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Web Service PACK Help
Replies: 10
Views: 7063

In other words, use just the Web Service Transformer in your job and dump the 'ws client' stage. :wink:

Use the Client stage when all you want to do is source from a web service.
by chulett
Mon Apr 02, 2007 5:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to list the Job names under the category?
Replies: 17
Views: 3972

Most brain dead way:

Code: Select all

SELECT NAME FROM DS_JOBS WHERE CATEGORY = 'YourCategory';

You'll get one extra record for the category itself, can't remember the magical syntax to exlude that from the list. I'm sure it will be along shortly. :wink:
by chulett
Mon Apr 02, 2007 5:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Correct ODBC driver to connect to Oracle 10g db
Replies: 3
Views: 1065

Nope, same one.

Use of this driver requires the Oracle client to be installed. The question will be, do you continue to use the 9i Client to connect to the 10g instance or switch to a 10g Client? Do you use OCI stages or just ODBC? Do you support a mixture of 9i and 10g targets?