Search found 42189 matches

by chulett
Mon Jun 16, 2014 6:33 am
Forum: General
Topic: Change a default value by script
Replies: 11
Views: 2658

Re: Change a default value by script

CLOPES wrote:Can i change a default value directly in the job or change it in the isx or build a routine to change it using a script shell ?
The first two are 'yes' but what do you have in mind for this script?
by chulett
Sun Jun 15, 2014 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file clarification
Replies: 7
Views: 2387

Off the top of my head, Mod() the record number by 9 and then use three sets of three values for the constraints: 1,2,3 to first file; 4,5,6 to the second and 7,8,0 to the third.
by chulett
Sun Jun 15, 2014 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file clarification
Replies: 7
Views: 2387

Me, I'd use Mod() to control the constraint.
by chulett
Sun Jun 15, 2014 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage -Multiple update statements - Lock
Replies: 4
Views: 1990

Where exactly are these in the stage - in the body of the stage or before/after? I'd also be curious how many update statements will be generating these million updates. However, rather than sitting here and trying to puzzle out exactly what it is you are doing, we can probably just cut straight to ...
by chulett
Sat Jun 14, 2014 4:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to finish a job with warnings based on reject link
Replies: 14
Views: 10020

Each will promote any number of messages with the id you specify.
by chulett
Sat Jun 14, 2014 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New XML Stage Issue
Replies: 11
Views: 6125

Ah... you never followed up your post on this issue in the Site forum. It's only been two days, as noted it is a manual process and you'll need to be a little bit more patient I'm afraid.
by chulett
Sat Jun 14, 2014 7:03 am
Forum: General
Topic: command line trigger for job
Replies: 11
Views: 4186

We used -jobinfo to do both. If my experience, if it throws an ERROR the job didn't exist. No ERROR, then look in the same output to see if it was RUNNING or FAILED and branch accordingly. Thinking about this not sure we ever had a situation where the job was not compiled... but if there was, I for ...
by chulett
Fri Jun 13, 2014 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage -Multiple update statements - Lock
Replies: 4
Views: 1990

Can you be a wee bit more specific about what "there are multiple update statements" means exactly?
by chulett
Fri Jun 13, 2014 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to finish a job with warnings based on reject link
Replies: 14
Views: 10020

Whenever records pass along a reject link an alert (warning) is generated. You cannot change this. Seems to me what they are saying is that is the behavior they are looking for, however it is not generating the warnings. Not sure why that would be the case... unless it is something ODBC related. Wh...
by chulett
Fri Jun 13, 2014 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-00060: deadlock detected while waiting for resource
Replies: 12
Views: 8931

Re: ORA-00060: deadlock detected while waiting for resource

manok87 wrote:we have a parallel job which reads from a oracle table does some transformation and again does a INSERT/UPDATE in the same table.
Emphasis mine. :wink:
by chulett
Fri Jun 13, 2014 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert columns into Rows with metadata?
Replies: 13
Views: 3788

I don't have much if any spare time at the moment. Hopefully you've been working on this, pondering / testing / something and not simply waiting for me... right? :wink:
by chulett
Fri Jun 13, 2014 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Parallel over a new schema Oracle
Replies: 3
Views: 1234

Glad you found it. And yes, it can be frustrating when there are multiple problems and all you are alerted to is the first one. :wink:
by chulett
Thu Jun 12, 2014 10:43 am
Forum: Site/Forum
Topic: Unable to see premium member's contents after payment
Replies: 2
Views: 6638

Plenty of other posts in this forum with similar problems, so the suggestions in them may be something you should try... basically whom to contact. Question - how long ago was your payment made? Literally a month ago? Shouldn't take anyway near that long even though it is (as far as I know) still a ...
by chulett
Thu Jun 12, 2014 10:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter option on the sequence stage
Replies: 1
Views: 1038

The Sequential File stage? Yes, the Filter is "pure UNIX" on a UNIX system and what you need is whatever command that will cause only the records you want to read to be sent to standard out... so perhaps grep in your case. Your other option, of course, is to read them all and then constrai...