Search found 42189 matches
- Mon Jul 05, 2004 7:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: QS plug-in DS Enterprise Edition
- Replies: 3
- Views: 1184
- Mon Jul 05, 2004 7:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Before/After rotuine input values
- Replies: 3
- Views: 1075
Re: Before/After rotuine input values
I can't believe this hasn't been covered before, but I can't get anything returned for a search on either 'before' or 'after'. Something seems to be broken. I couldn't either until I told it 'Exact Match'. Really don't think it should be working that way, but try that as a alternative. As mentioned...
- Mon Jul 05, 2004 7:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: can you use odbc driver for bci?
- Replies: 8
- Views: 2973
- Sat Jul 03, 2004 4:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Limitation of the Pivot Stage?
- Replies: 2
- Views: 1016
Limitation of the Pivot Stage?
I'm curious if anyone is aware of any limitations in the use of the Pivot stage? One of my developers who makes heavy use of it is having problems trying to pivot one row into more than 64 rows. Now, don't ask me the whys or the wherefors. I'm not really sure why he needs to do what he is trying to ...
- Sat Jul 03, 2004 8:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic DSExecute returned variable condition not working
- Replies: 7
- Views: 2160
- Fri Jul 02, 2004 12:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Moving from Dev env to QA env
- Replies: 3
- Views: 1038
- Fri Jul 02, 2004 12:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic DSExecute returned variable condition not working
- Replies: 7
- Views: 2160
Technically, what is coming back to you in Output is a dynamic array that holds whatever is echoed to 'the screen'. Try changing your check to:
I don't believe you should need the 'trim', but it shouldn't hurt either.
Code: Select all
ShellOutput=Trim(Output<1>)I don't believe you should need the 'trim', but it shouldn't hurt either.
- Fri Jul 02, 2004 11:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference/Advantage of using Transform instead of Routine
- Replies: 12
- Views: 5038
Stage Variables are very handy and can be used to simplify things. They are evaluated (in order) before the derivations in your output links, so they can be used to cut down on the amount of work done in the Transformer. For example, a complex derivation that is used in multiple output links can be ...
- Fri Jul 02, 2004 8:22 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with ExecSH
- Replies: 3
- Views: 885
- Fri Jul 02, 2004 6:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Two utilities (yes, free ones) that you might like
- Replies: 3
- Views: 1163
- Fri Jul 02, 2004 6:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: xml-File to an unix-based ftp-server
- Replies: 1
- Views: 756
There's really nothing magical about the 'settings' you would need. Your XML file is no different than any other ASCII file you'd be moving around via ftp. There should be a pdf document that describes the stage installed on your client machine and each field in the plugin should have help available...
- Thu Jul 01, 2004 7:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Aggregator - problem with memory
- Replies: 3
- Views: 1347
Actually, it's the Sort stage that uses temp files, the Aggregator works in memory without landing anything. Unless things were different back in 5.x but I don't believe so. You can substantially reduce the amount of memory (and time) used by the Aggregator by presorting the data and asserting the s...
- Thu Jul 01, 2004 7:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is Pick Basic still the programming language in PX?
- Replies: 9
- Views: 3343
- Thu Jul 01, 2004 7:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference/Advantage of using Transform instead of Routine
- Replies: 12
- Views: 5038
- Thu Jul 01, 2004 4:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference/Advantage of using Transform instead of Routine
- Replies: 12
- Views: 5038
There's no context switching when calling a routine; the only overhead is determining its location (via the Catalog, or VOC file) and loading it into memory (this process is sometimes called "link snapping"); after that, the in-memory location is cached. Ah... thanks for the clarification. It was e...