Search found 42189 matches

by chulett
Thu Aug 17, 2006 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage function extracting only numbers
Replies: 6
Views: 5333

DIGITS is a Transform, not a function. Makes the whole 'MCN' thing easier to understand in the job. :wink:
by chulett
Thu Aug 17, 2006 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt with ExecCommand Activity in sequence
Replies: 9
Views: 2568

As I noted. :wink:

It's also good to note that it seems to be a platform specific issue, not a version specific one. Some platforms on the troublesome versions worked and some didn't. Best to check carefully beyond what it shows in the log as it always looks good there.
by chulett
Thu Aug 17, 2006 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting a Part from the given String
Replies: 24
Views: 18295

Spend a little time thinking about it. What marks the end of this part number? You'll need to find the position of 'P/N' in the field. Four positions from there the actual part number starts. It ends... where? The next space you encounter? The end of the string? A comma? All of the above? You're goi...
by chulett
Thu Aug 17, 2006 7:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting repeated values in xml
Replies: 3
Views: 793

Unless you are very familiar with how this all works, I'd suggest you not manually create the expressions. Let the tool do it for you. Do you have an .xsd for this? That would be best but you can use a sample of the output file as well. Use the Manager to import that metadata and see what it generat...
by chulett
Thu Aug 17, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC lookup using Stored Procedure
Replies: 5
Views: 998

I would think it's safe to say, that if you get a specific error stating something isn't allowed that you can't do it. :(
by chulett
Thu Aug 17, 2006 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt with ExecCommand Activity in sequence
Replies: 9
Views: 2568

As long as your version of DataStage actually supports using job parameters in the Parameters field. There is a well know and often mentioned bug in some of the early 7.x versions where job parameters are translated in the log but are actually sent raw (untranslated) to the command itself. Seems to ...
by chulett
Wed Aug 16, 2006 9:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt with ExecCommand Activity in sequence
Replies: 9
Views: 2568

Thanks, always forget that little tidbit. :wink:
by chulett
Wed Aug 16, 2006 7:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt with ExecCommand Activity in sequence
Replies: 9
Views: 2568

Re: Doubt with ExecCommand Activity in sequence

I gave command as /DataStage/751A/Ascential/rm *.blp That didn't work because it's not a valid UNIX command. What would happen if you typed "/DataStage/751A/Ascential/rm *.blp" from the command line? Unless you have copied the 'rm' command such that it lives in that Ascential directory, you're goin...
by chulett
Wed Aug 16, 2006 2:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Switchboard type Sequencer
Replies: 3
Views: 861

If you have a single Sequencer set to Any in that flow, then the first time any one of the 1-4 jobs completes all four A - D jobs will run. Subsequent completions of the numbered jobs will trigger nothing. That's the way the Sequencer works, like a gate. And you tell it when to open the gate by sett...
by chulett
Wed Aug 16, 2006 11:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: condition in a transformer
Replies: 19
Views: 4275

The link is missing the "www" in front of the "dsxchange.com".
by chulett
Wed Aug 16, 2006 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running DataStage using Shells Script
Replies: 5
Views: 2044

Search the forum for that particular error, it should turn up.
by chulett
Wed Aug 16, 2006 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unix question
Replies: 7
Views: 1755

Why not just have a friendly chat with a System Admin? Or one of your coworkers there that speaks UNIX?
by chulett
Wed Aug 16, 2006 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running DataStage using Shells Script
Replies: 5
Views: 2044

Source your dsenv file in the script.

Code: Select all

cd `cat /.dshome`
. ./dsenv

That will ensure the enviroment is correct for the script.
by chulett
Wed Aug 16, 2006 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine To Create a HASHFILE
Replies: 8
Views: 2689

Drop a Transformer next to the Reference Hashed file and link them together. Add a stage variable so the compiler won't complain. Set the constraint to @FALSE so no rows go down the link, as the mere fact it is there will open the hashed file. Make sure your metadata is correct in the link, but the ...