Search found 42189 matches

by chulett
Wed Oct 24, 2012 11:28 pm
Forum: General
Topic: Parameters in Email Body
Replies: 3
Views: 2323

Well, all of the ones I found searching all say basically the same thing and are exactly what you'd need to do. Here are three example posts pulled from the search results: http://www.dsxchange.com/viewtopic.php?t=138041 http://www.dsxchange.com/viewtopic.php?t=143310 http://www.dsxchange.com/viewto...
by chulett
Wed Oct 24, 2012 10:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion from spaces to hex 000c
Replies: 2
Views: 1330

Yes, you can use Convert() for this but you pass the decimal value to the CHAR() function. So just convert your hex values to decimal and use them there.
by chulett
Wed Oct 24, 2012 10:42 pm
Forum: General
Topic: success count, error count, warning count of records
Replies: 6
Views: 1509

Trying to recall... isn't that information in the job's log?
by chulett
Wed Oct 24, 2012 10:37 pm
Forum: General
Topic: Parameters in Email Body
Replies: 3
Views: 2323

It has been discussed here quite a bit. An exact search for "email body" should help.
by chulett
Wed Oct 24, 2012 3:30 pm
Forum: General
Topic: return ouput of a command to command stage in sequencer
Replies: 4
Views: 1269

As long as you are "downstream" from the Execute Command stage, you should see all of the various options it supports when you use the Parameter Helper. Matter of fact, you should see that for everything "upstream" from where you invoked the helper. Hope that makes sense. Unfortu...
by chulett
Wed Oct 24, 2012 1:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: junk data issue using sequential stage
Replies: 9
Views: 2122

Again, not junk just EBCDIC. :wink:

Glad you got it sorted out.
by chulett
Wed Oct 24, 2012 1:15 pm
Forum: General
Topic: return ouput of a command to command stage in sequencer
Replies: 4
Views: 1269

Sure, that should be one of the options that the stage will return. Off the top of my head, one of your choices if you use the External Parameter helper (...) will be $CommandOutput.
by chulett
Wed Oct 24, 2012 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: junk data issue using sequential stage
Replies: 9
Views: 2122

The input to the job is a sequential pipe delimited file, which i can read properly in UNIX prompt. So this rules out the possibility of having ebcdic data. No, it really doesn't. You can easily read in ASCII data and output it as EBCDIC, which the View Data utility understands and will translate p...
by chulett
Wed Oct 24, 2012 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while reading File
Replies: 8
Views: 1929

<lf> means line feed which on UNIX is the same as a "newline" I suppose. What have you specified as the record delimiter in the stage?
by chulett
Wed Oct 24, 2012 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Title Case
Replies: 4
Views: 1640

Pffffttt... even better!

"If you want the comparison performed on this column to ignore case, then select the Caseless check box."
by chulett
Tue Oct 23, 2012 9:32 pm
Forum: General
Topic: Information Server version 9.1
Replies: 18
Views: 11528

Of course he does, should have checked there first. :wink:

Thanks for the update Vincent & John.
by chulett
Tue Oct 23, 2012 9:55 am
Forum: General
Topic: Sequencer was entered, but never exited
Replies: 7
Views: 3305

I think so, that would be part of the "repeat the notification" path that I mentioned... as long as you could craft each trigger to be aware of which job just completed and I'm not sure that's feasible. :?
by chulett
Tue Oct 23, 2012 9:17 am
Forum: General
Topic: Sequencer was entered, but never exited
Replies: 7
Views: 3305

Arnd - one. Your design will always only ever send one email, the Sequencer will determine if it happens when the first job finishes or the last job finishes. You'll need to repeat the notification for each one you want to send, that or loop through the jobs and send one on each iteration. Triggers ...
by chulett
Tue Oct 23, 2012 9:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connection
Replies: 3
Views: 1551

Server jobs work the exact same way and no, there's no such option. Do verify with your DBA that your issue is in fact an idle timeout issue and not something else.
by chulett
Tue Oct 23, 2012 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connection
Replies: 3
Views: 1551

Re: Oracle connection

Doesn't Data Stage establish connection only when it reaches respective stage to process records or Does Data Stage establishes connection across all the stages like ODBC or Oracle at the start itself? All connections are established when the job starts and the stages "open" or initialize...