Search found 53125 matches
- Mon Oct 24, 2005 3:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to give derivation in Lookup stage
- Replies: 2
- Views: 1001
- Mon Oct 24, 2005 3:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: were clause in filter
- Replies: 10
- Views: 2273
- Mon Oct 24, 2005 3:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: NLS Installation
- Replies: 2
- Views: 934
- Mon Oct 24, 2005 3:17 pm
- Forum: IBM QualityStage
- Topic: INVp.FRQ Report Not Accurate
- Replies: 1
- Views: 1954
- Mon Oct 24, 2005 3:14 pm
- Forum: Site/Forum
- Topic: datasatgehunter
- Replies: 2
- Views: 2351
- Mon Oct 24, 2005 2:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Create multiple Records from single record
- Replies: 16
- Views: 4938
Welcome aboard. :D Re-read the thread from the top, where the original line had ten columns of which the final two delimited fields specified what should occur in the output. Your question substitutes four for ten and can be solved in exactly the same ways. Not even any requirement to change the rou...
- Mon Oct 24, 2005 1:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: were clause in filter
- Replies: 10
- Views: 2273
- Mon Oct 24, 2005 1:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Clarification required about Cluster Environment
- Replies: 7
- Views: 1311
Yes. Read the chapter on configuration files in the Manager manual, particularly the sections on resources. Data Sets are automatically partitioned across all the processing nodes in the configuration, unless explicitly constrained into a node pool or a disk resource pool by means of stage properties.
- Mon Oct 24, 2005 1:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference between DS Transform, DS Routine, Function
- Replies: 4
- Views: 2762
Yes, if you're worried about less than a millisecond in an entire job run. When a routine is first called (for row #1) it has to be found in the Catalog and loaded into memory. After that its exectuable code is in memory and its entrypoint address is cached. The down side is that, if the definition ...
- Mon Oct 24, 2005 1:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what is merge explain with simple example
- Replies: 2
- Views: 1017
- Mon Oct 24, 2005 1:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to write routine
- Replies: 2
- Views: 893
How To Write Routine (server routine) Start with a specification of what you want to achieve. The specification is written in normal language, for example English. Formalize the input arguments needed; seek opportunities to make a more flexible reusable component. Determine whether your need is a b...
- Mon Oct 24, 2005 12:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS Basic to handle file
- Replies: 11
- Views: 2940
WRITESEQF guarantees an immediate flush. There's also a FLUSH statement, and you can use the NOBUF statement to make I/O to this particular file non-buffered. You can certainly treat the file as a dynamic array but, to do this, you must open its parent directory with OPENPATH then read the entire fi...
- Mon Oct 24, 2005 12:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Normalizing options in Hashed Files
- Replies: 2
- Views: 757
UniVerse actually supports eight levels of nesting. Can you think or even imagine in eight dimensions? One simplistic explanation I like is that, in these non first normal form databases, you can have a cell with a "data type" of "table". Unless you've got such nested data, don't worry about it. If ...
- Mon Oct 24, 2005 12:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Clarification required about Cluster Environment
- Replies: 7
- Views: 1311
- Sun Oct 23, 2005 4:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic hashed files and Static hashed files - pros and cons
- Replies: 7
- Views: 1476
MFILES is best sized as large as possible, subject to the restriction that you don't exceed the UNIX limit (NFILE) and reserve eight file units. That is, MFILES <= NFILE - 8 It doesn't really matter what it is you're opening. For UniVerse, you also reserve a file unit per UV/Net connection and one f...