Search found 42189 matches

by chulett
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...
by chulett
Wed Nov 17, 2010 9:45 pm
Forum:
Topic: transcation size in datastage
Replies: 6
Views: 2721

Sorry, there's no Moderator here. Perhaps some super-user type like Andy will wander along, though.
by chulett
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

:!: Bejeebuz, people - stop quoting entire posts just to add a reply.

Use the perfectly lovely Reply to Topic button down there rather than the seemingly more convienent 'Reply with quote'. Save me from having to come in here and clean things up all the time. Please. :?
by chulett
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...
by chulett
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

There should be a function that returns the 'day of the week' with zero being Sunday, from what I recall.
by chulett
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

Use the Field() function to take the first field from a space delimited string.
by chulett
Wed Nov 17, 2010 11:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FIND & REPLACE
Replies: 4
Views: 1378

... then import. :wink:
by chulett
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

This 'log clearing', are we talking about CLEAR.FILE or from the Director? What I assume we've been discussing here is the former here and I've never seen corruption that it didn't 'correct'... maybe just got lucky. :wink:
by chulett
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 ...
by chulett
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

Try it without the semicolon. While Toad may like/need it, there are places in DataStage where it doesn't. Not sure this is one, but worth a shot.
by chulett
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 ...
by chulett
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

The last part of the post explains how the issue was resolved.
by chulett
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

... or DBA. And yes, you recall correctly. :wink:
by chulett
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...