Search found 42189 matches

by chulett
Fri Oct 25, 2013 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage - Clarification
Replies: 5
Views: 2196

I don't believe there is such an option in the Join stage... but let's see what others have to say. Pretty sure those are your two options.
by chulett
Fri Oct 25, 2013 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage - Clarification
Replies: 5
Views: 2196

What you call "clutter" I call a useful piece of information. :wink:

You can also use an APT variable to turn off automatic TSORT insertion for that entire job but I personally would recommend sticking with the Sort stage.
by chulett
Fri Oct 25, 2013 11:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TRIM leading zeros
Replies: 2
Views: 2131

You have to tell it WHAT you want trimmed - by default it trims spaces. And you should also ensure you specify "leading".
by chulett
Fri Oct 25, 2013 12:06 am
Forum: General
Topic: Issue with attachment in email notification
Replies: 2
Views: 2212

I believe you have to use a single job parameter there.
by chulett
Thu Oct 24, 2013 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not getting Required output after XML Output stage
Replies: 2
Views: 1299

There are five that need to be 'escaped' as Ernie notes: " " ' &apos; < < > > & & So your example output as posted is incorrect as "RANJAN & CASH" would be escaped in the XML as "RANJAN & CASH"... I'm assuming that's a typo on your part.
by chulett
Thu Oct 24, 2013 7:45 am
Forum: General
Topic: Pre-Requisite for configuring Netezza Connectivity
Replies: 1
Views: 841

First step would be to read the Connectivity Guide for Netezza Performance Server pdf. Or check out the information available online.
by chulett
Wed Oct 23, 2013 10:37 am
Forum: General
Topic: Error calling subroutine: DSR_EXECJOB (Action=5)
Replies: 4
Views: 1899

You get this error when, exactly? And is this affecting everyone or just you?
by chulett
Tue Oct 22, 2013 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 3240

Except for the "C2 is not fixed length" part... I was thinking that Transformer Looping might be the way to go, hence the version question.
by chulett
Tue Oct 22, 2013 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Functions in datastage
Replies: 7
Views: 2034

Index isn't going to be helpful here, unless perhaps you're willing to execute it 26 times. Seems to me you'll need something more like a Regular Expression to detect the presence of four contiguous occurances of the same letter in your data.
by chulett
Tue Oct 22, 2013 10:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Len function issues in VARCHAR columns
Replies: 7
Views: 2178

Neither of those expressions are valid:

If (Len(Trim(InputColumn)) = 5 Or Len(Trim(InputColumn)) = 6) Then 1 Else 0

InputColumn=0 OR InputColumn=1
by chulett
Tue Oct 22, 2013 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer logic required
Replies: 2
Views: 871

What have you tried?
by chulett
Tue Oct 22, 2013 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 3240

I'd also be curious what exact 8.x version of DataStage you are running.
by chulett
Tue Oct 22, 2013 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 3240

:idea: Please do not come here and simply post input and output examples and ask for "logic to implement". Explain to us in words what your requirements are, what needs to be done to turn the input data into the output data. Ideally, also add what you've tried so far and what issues you ha...
by chulett
Mon Oct 21, 2013 5:46 pm
Forum: General
Topic: Job abort message as an attachement in email notification
Replies: 9
Views: 2063

I'm not Arnd but you can check the help index and look for any that start with 'DSGetLog'.
by chulett
Mon Oct 21, 2013 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data string '20090102' does not match format '%yyyy-%mm-%dd'
Replies: 10
Views: 15654

As Mike noted, you don't need all that but rather simply switch from IsValidDate (which needs a date not a string) to IsValid with a parameter of "date" and the format string.