Search found 53125 matches
- Mon Mar 26, 2007 5:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: 2GB Limit on Hash File regarding blink error
- Replies: 10
- Views: 1825
Hashed files are created by default using 32-bit internal pointers. That is the source of the 2GB limit - it is the largest address that can be accessed with a signed 32-bit integer. You can create hashed files with 64-bit internal pointers, or convert existing hashed files to 64-bit internal pointe...
- Mon Mar 26, 2007 5:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Best way to start developing using parallel jobs
- Replies: 11
- Views: 2106
- Mon Mar 26, 2007 5:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to reject the rows that not in the parent table???
- Replies: 22
- Views: 5555
Test the returned key column, or any returned not null column, to determine whether it is null. That is all you need. If it is null, the lookup failed. Your constraint expression on the "good rows" output should therefore be
Code: Select all
Not(IsNull(parent_table_link.key_column))- Mon Mar 26, 2007 5:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to reject the rows that not in the parent table???
- Replies: 22
- Views: 5555
Can you use MERGE or JOIN stage .That can be helpful to you. through that stages you can remove what you want?the columns which are not matching that can be reject . Efficiency Note This approach involves the not inconsiderable overhead of converting from a server job to a parallel job. Server jobs...
- Mon Mar 26, 2007 5:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to reject the rows that not in the parent table???
- Replies: 22
- Views: 5555
Re: How to reject the rows that not in the parent table???
TRY THIS. IF ISNULL(LINK.FIELDNAME) OR TRIM(LINK.FIELD) = '' THEN @TRUE ELSE @FALSE Efficiency Note ISNULL(TRIM(LINK.FIELDNAME)) OR TRIM(LINK.FIELD) = '' performs the same task. IF test_expression THEN @TRUE ELSE @FALSE is inherently redundant. Similarly, trimming NULL has n...
- Mon Mar 26, 2007 5:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Execute Multiple Before Job Commands
- Replies: 7
- Views: 1887
- Mon Mar 26, 2007 5:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to know the RT_LOG number for a job
- Replies: 1
- Views: 710
Search will reveal that you query a Repository table called DS_JOBS.
- Mon Mar 26, 2007 5:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: i want the details about dsjobs in command line from scratch
- Replies: 12
- Views: 8044
- Mon Mar 26, 2007 5:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to view data in Look up file Set
- Replies: 1
- Views: 722
There is no View Data for Lookup File Set. Nor is there any tool for viewing the rows in a Lookup File Set. This is because streaming data is not how a Lookup File Set works. Its operation is predicated upon receiving a key value and returning that row. If you must view the data sent to a Lookup Fil...
- Mon Mar 26, 2007 5:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: HOw to Create a Header and Trailer for a Sequential file?
- Replies: 6
- Views: 2721
Depends what has to be in them. If the header is fixed text, for example, you could set up a before-job subroutine to use echo command. The Sequential File stage in your job would then be set to append, rather than to overwrite. Similarly trailer could be an operating system command that picks up th...
- Mon Mar 26, 2007 5:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: File Pattern property
- Replies: 1
- Views: 725
File Pattern is NOT read from another file; the property value must be the wildcard itself. For example, in your case, Test?.txt would be a suitable value. What you need to do is to read TestControl.txt in an ExecuteCommand activity in a job sequence then supply its output as a "list of things" to a...
- Mon Mar 26, 2007 5:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: updating the surrogate value to start from first position
- Replies: 1
- Views: 1075
- Mon Mar 26, 2007 5:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Running Routing from Parallel Job
- Replies: 4
- Views: 1489
I needed to run this in job stage and wanted to avoid Sequencer. I needed to run this in job stage and can not use sequencer.... Why can't you use a job sequence? It would make testing the condition under which you want to unwind the load easier, given that the job that performs the load can be fin...
- Mon Mar 26, 2007 4:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiplication with -1 in Transformer
- Replies: 12
- Views: 4191
- Mon Mar 26, 2007 4:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: De-Duplication of Invoice data
- Replies: 9
- Views: 3436