Search found 42189 matches
- Wed Nov 17, 2010 10:33 pm
- Forum: General
- Topic: Creating loop in Sequence
- Replies: 4
- Views: 2048
If you are writing the value to a file, you'll need something to 'read' that file and then make a decision based on what that returns. Typically, that would be an Execute Command stage that does a cat on the file and then your triggers can check the $ReturnValue (I do believe) from the stage to deci...
- Wed Nov 17, 2010 9:45 pm
- Forum:
- Topic: transcation size in datastage
- Replies: 6
- Views: 2721
- Wed Nov 17, 2010 9:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup Stage - wI/O
- Replies: 15
- Views: 5848
- Wed Nov 17, 2010 6:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Improving Job performance
- Replies: 16
- Views: 6419
First question in my mind is what Update Actions are you using in your target OCI stages? You could also determine if the lookups are a bottleneck by putting an @FALSE contraint in the last transformer for all of the output links so all the prep work is done but nothing is written to the target tabl...
- Wed Nov 17, 2010 3:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Re:how to find day of the week provided from the date
- Replies: 2
- Views: 1361
- Wed Nov 17, 2010 3:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: trimming a field of type varchar
- Replies: 3
- Views: 1389
- Wed Nov 17, 2010 11:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FIND & REPLACE
- Replies: 4
- Views: 1378
- Wed Nov 17, 2010 8:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Computed blink of 0x830 does not match expected blink
- Replies: 7
- Views: 9496
- Wed Nov 17, 2010 8:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Two versions of Jobs repository?
- Replies: 9
- Views: 2855
Your mistake was going 'under the covers' to delete things, do not do that on your own. While you could do that if you knew what you were doing in earlier versions where there was a single repository, nowadays there are (technically) two and you compounded your original 'out of sync' error by doing ...
- Wed Nov 17, 2010 8:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Stored Procedures in Oracle connector stage
- Replies: 13
- Views: 15613
- Wed Nov 17, 2010 8:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Replace a character in a string
- Replies: 4
- Views: 1393
- Tue Nov 16, 2010 5:49 pm
- Forum: General
- Topic: Creating loop in Sequence
- Replies: 4
- Views: 2048
Pretty much exactly like you've posted. What have you tried so far? Have you built looping Sequence jobs before or is this your first attempt at them? The checking part should be straight-forward, for a '1' return continue the loop, for a '0' branch outside the loop, bypassing the End Loop stage to ...
- Tue Nov 16, 2010 5:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Strange Error with Dataset Name Parameterization
- Replies: 2
- Views: 2937
- Tue Nov 16, 2010 5:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: getting last seven days records from sybase table
- Replies: 5
- Views: 3741
- Tue Nov 16, 2010 10:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help with XML Input
- Replies: 8
- Views: 5229
You should not use the Sequential File stage in either product to read XML. While it may work, it will not always work. In XML, things like line feeds and carriage returns (etc) are just 'noise' and ignored, they will however affect the Sequential File's ability to read the XML correctly. Best Pract...