Search found 42189 matches
- 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
- 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
- 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...
- 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...
- 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
- 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 ...
- 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
- 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...
- Wed Aug 16, 2006 2:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Tab Delimiter
- Replies: 3
- Views: 1114
- 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...
- Wed Aug 16, 2006 11:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: condition in a transformer
- Replies: 19
- Views: 4275
- 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
- Wed Aug 16, 2006 9:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: unix question
- Replies: 7
- Views: 1755
- 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.
That will ensure the enviroment is correct for the script.
Code: Select all
cd `cat /.dshome`
. ./dsenvThat will ensure the enviroment is correct for the script.
- 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 ...