Search found 42189 matches

by chulett
Sat Oct 16, 2010 9:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server routine to parallel routine
Replies: 12
Views: 9170

anandapani wrote:Then design team concluded that, this is because of server routines called from the BT of the parallel job, which are running in parallel when job run in muliple instances.
This conclusion seems highly suspect to me as well. :?
by chulett
Sat Oct 16, 2010 8:59 pm
Forum: General
Topic: job status
Replies: 5
Views: 1864

That all sounds correct to me. So, when Job1 aborts if you don't get a '3' passed to the second job I'm not sure why that would be. Seems to me that you should involve your official support provider. :?
by chulett
Sat Oct 16, 2010 6:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Collector stage -sort operation
Replies: 2
Views: 1700

That's what I was thinking... but you could strip the spaces for the sort key and leave the original field intact as data so there's no need to try to rebuild it.
by chulett
Sat Oct 16, 2010 2:07 pm
Forum: General
Topic: job status
Replies: 5
Views: 1864

You actually are using "Job1StageName.$JobStatus" yes? Pick it from the (...) external parameter helper, don't try to type it in by hand.
by chulett
Sat Oct 16, 2010 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server routine to parallel routine
Replies: 12
Views: 9170

Re: Elaborating the requirement

I completely and whole-heartedly agree with Mike. Just because you have the Enterprise Edition does not mean that everything must be a PX job. Both weapons in your arsenal have strengths and weaknesses, use the appropriate one for the appropriate task. And for goodness sake, don't think your first o...
by chulett
Sat Oct 16, 2010 6:53 am
Forum: General
Topic: job status
Replies: 5
Views: 1864

Saying "I'm not able to" doesn't help us help you. Why not? What exactly are you trying? How have you implemented this? What happens?
by chulett
Sat Oct 16, 2010 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: coding
Replies: 4
Views: 1584

Set up boolean stage variables, one for each check, using functions like Count() and then the constraint would reference them: svOneDot: Count(YourField,".") = 1 svNoSpace: Count(YourField," ") = 0 svLength: Len(YourField) svLengthOK: svLength >= 7 and svLength <= 70 Contraint: s...
by chulett
Fri Oct 15, 2010 10:05 pm
Forum: General
Topic: How to list jobs modification dates?
Replies: 25
Views: 7110

Ah... cool, thanks.
by chulett
Fri Oct 15, 2010 4:00 pm
Forum: General
Topic: How to list jobs modification dates?
Replies: 25
Views: 7110

Assuming DSND = descending, but "EXP"?
by chulett
Fri Oct 15, 2010 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage 8.1.1 Bug
Replies: 5
Views: 3548

That behaviour has been reported here before, from what I recall.
by chulett
Fri Oct 15, 2010 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Statistics
Replies: 2
Views: 1550

That's the way it works, I'm afraid - no matter where / how you run a MI job, you can't see performance stats in the Designer as it can only display the 'base' job and not the specific invocation that is running.
by chulett
Fri Oct 15, 2010 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Proc Stage
Replies: 10
Views: 4646

Hmmm... what database? I honestly don't recall having to do anything special for Oracle but perhaps things change in other databases. Or I'm wrong. :? Also realizing that I've been thinking of the SP stage in a Server job, perhaps it being in a PX job also changes the rules. Hopefully someone can sh...
by chulett
Fri Oct 15, 2010 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC taking longtime to unload the data
Replies: 6
Views: 7688

How are you 'converting it to varchar' in the transformer?
by chulett
Fri Oct 15, 2010 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server routine to parallel routine
Replies: 12
Views: 9170

1. Not really a DataStage question 2. Documented in the Parallel guides, from what I recall From the questions, it sounds like these 'Server' routines may not need to be converted at all. Typically routines that call out to the O/S or leverage the API for job/log information are used before/after jo...
by chulett
Fri Oct 15, 2010 6:33 am
Forum: General
Topic: Declare/Use of Variables from SQL Oracle Table data?
Replies: 6
Views: 11515

What version of DataStage? What operating system? Parallel or Server?