Search found 42189 matches

by chulett
Thu Dec 12, 2013 10:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Issue with Datatype
Replies: 2
Views: 721

Not really any different from your other post discussing this data type I'm afraid.
by chulett
Thu Dec 12, 2013 1:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML - underperforming
Replies: 18
Views: 6639

At this very moment? I'm afraid not. Can you clarify a couple of things, please? What 8.x version are you running and is this the 'new' XML stage? I'm guessing it's not but thought I would ask to be sure.
by chulett
Thu Dec 12, 2013 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML - underperforming
Replies: 18
Views: 6639

Sorry, got nothing to add except to note your interesting use of literally white whitespace. :wink:
by chulett
Thu Dec 12, 2013 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to retain £ symbol
Replies: 2
Views: 2765

Why would it sometimes fail? Sounds like the proper solution to me.
by chulett
Thu Dec 12, 2013 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server job aborts with connector stages in 8.7
Replies: 7
Views: 4112

That's too bad about the lack of the diagnostic message, that will complicate trouble-shooting this. Let's see if anyone else has any words of wisdom. In the meantime, perhaps it might help to post the contents of your dsenv file as that's where your shared library statement would be set.
by chulett
Thu Dec 12, 2013 12:21 am
Forum: General
Topic: Error while 'Test Connection' / 'View Data'
Replies: 7
Views: 1748

If the job runs fine with the parameters in place and the only issue is with View Data, then in your shoes I'd be looking for a patch. Work with your official support provider or check on Fix Central.
by chulett
Wed Dec 11, 2013 8:53 am
Forum: General
Topic: DataStage 9.1 Operations Console Database Supported Versions
Replies: 8
Views: 4606

Verify with your official support provider.
by chulett
Wed Dec 11, 2013 8:52 am
Forum: General
Topic: Error while 'Test Connection' / 'View Data'
Replies: 7
Views: 1748

Are you enclosing the parameter name in hash marks - #DB_CONN1# - and have you ensured that the parameter name exactly matches to the name defined for the job, including case? Couldn't tell from your post, hence the question.
by chulett
Wed Dec 11, 2013 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server job aborts with connector stages in 8.7
Replies: 7
Views: 4112

Hard to say. If you Reset the aborted job, is an entry added to the log saying "From previous run..."? If so, post the contents.
by chulett
Tue Dec 10, 2013 5:34 pm
Forum: General
Topic: Calculating with timestamps in a sequence job
Replies: 4
Views: 2006

You'd need to create a custom routine and then run that in the Sequence job and that means writing it in BASIC. I think you'll find Ray has some prebuilt that he gives away on his site that do "date math"... let's see what he says when he wanders by. :wink: Once you have computed this peri...
by chulett
Tue Dec 10, 2013 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector w/ SQL Server Stored Proc in Before SQL hangs
Replies: 5
Views: 5351

Or I assume the proc could have been changed to issue the commit.

Regardless, nice find. :wink:
by chulett
Tue Dec 10, 2013 2:25 pm
Forum: General
Topic: Compare Two Values in Sequential File
Replies: 19
Views: 7977

ExecCommand tab Command: echo <activitystagename>.$CommandOutput<3> Parameters: <pathtosequentialfile> Triggers tab Expression: $CommandOutput<3> = 'Y' If you go this route... no, that command would not be correct. You echo the contents of the file and then as you correctly noted, use the result in...
by chulett
Tue Dec 10, 2013 2:18 pm
Forum: General
Topic: Compare Two Values in Sequential File
Replies: 19
Views: 7977

iq_etl wrote:With the Execute Command stage having it's own trigger tab, do I even need a Nested Condition?
Need? No, which is why I noted you could do all this with or without that stage.
by chulett
Tue Dec 10, 2013 2:16 pm
Forum: General
Topic: Compare Two Values in Sequential File
Replies: 19
Views: 7977

I don't think "$CommandOutput<3> = 'Y'" is an expression. It certainly is... it evaluates to true or false. Use the helper to build the expression, even if you have to edit it later to complete it. As I noted, you need to include the name of the stage in the variable so it knows which Com...
by chulett
Tue Dec 10, 2013 10:50 am
Forum: General
Topic: Compare Two Values in Sequential File
Replies: 19
Views: 7977

Looks like Andy was assuming you'd be getting two separate counts (or simply counting two files) via two Execute Command stages and then the Nested Condition stage would be the one doing the 'evaluating' of the results, deciding if they matched or not. If you've got everything in one file with three...