Search found 42189 matches

by chulett
Sun Mar 21, 2010 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can i delete files from load directory using datastage??
Replies: 9
Views: 5289

Can you use a Server job for this, that would be fairly simple to build. Or are you one of those shops where only PX jobs are allowed because Server jobs are some kind of evil? :?
by chulett
Sat Mar 20, 2010 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values of a text file to User variables.
Replies: 11
Views: 3861

Rather than hijack / sidetrack someone else's slightly related post, please start your own.
by chulett
Sat Mar 20, 2010 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can i delete files from load directory using datastage??
Replies: 9
Views: 5289

Sure but it really depends on when you need to do this. A custom routine in BASIC using DSExecute() would be fairly simple to build and could be called 'after job' but you'd have to let us know how that would work for you, timing and/or process flow wise. How were you planning on implementing your d...
by chulett
Sat Mar 20, 2010 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select statement in Transformer Stage
Replies: 20
Views: 6614

:idea: If this is all too much, how about at least addressing where LOCATION comes from? Is this a singleton value, such that once you somehow know what it is "for this run" you can compute the VARIABLE value and then use it in a select statement in a job to grab and process a bunch of dat...
by chulett
Sat Mar 20, 2010 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select statement in Transformer Stage
Replies: 20
Views: 6614

What you posted is *still* confusing and shows a lack of understand of how the tool works. Still... let's keep trying... 1. It doesn't need to be an environment variable, just a simple job parameter could work. 2. In my example, "p_VARIABLE" was not a stage variable but yet again a simple ...
by chulett
Sat Mar 20, 2010 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select statement in Transformer Stage
Replies: 20
Views: 6614

I do not know why there is so much confusion on these Topic. Simple. Because, in all honesty, you've done a terrible job of helping us help you and explaining clearly what the heck you were/are trying to do. Maybe it's all me and I'm being especially dense or something but I honestly don't think so...
by chulett
Sat Mar 20, 2010 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage Reject Link is not working
Replies: 7
Views: 2458

Yes. Clarify your issue, especially your Write Method setting.
by chulett
Sat Mar 20, 2010 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performance issue
Replies: 2
Views: 1255

Re: performance issue

dr.murthy wrote:... it takes 10 sec in data stage with auto partitioning where as ...
Guessing that the Job Type is mis-marked. And that you know that and are making a point. :P
by chulett
Sat Mar 20, 2010 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can i delete files from load directory using datastage??
Replies: 9
Views: 5289

Yes, and you have all kinds of options to accomplish that. Bottom line, you just need to run "DEL <filename>" from the O/S. This can be done in a custom routine, before/after job directly or with a script, in a Sequence job with the Execute Command stage... etc etc...
by chulett
Sat Mar 20, 2010 7:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select statement in Transformer Stage
Replies: 20
Views: 6614

Exactly. So... you need to build this SQL string. Check, fine, simple. The question still stands - then what? How are you planning on executing it? :? This is a 'select' as in source query, so running it once for every row passing through your job doesn't make much sense unless you're only processin...
by chulett
Sat Mar 20, 2010 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job control process (pid 2100) has failed ?????
Replies: 7
Views: 5532

Not just from that message... how exactly are you 'calling one job inside another job'? Are there any other messages logged, parent or child?
by chulett
Sat Mar 20, 2010 7:26 am
Forum: General
Topic: Inaccurate Record counts on links
Replies: 11
Views: 3555

When you attach to the multi-instance job, are you specifying the invocation id and a dot along with the job name?

handleJob = DSAttachJob(JobName.InvID, DSJ.ERRFATAL)
by chulett
Fri Mar 19, 2010 10:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is the action of "stage the data"
Replies: 3
Views: 1630

Why not ask whomever wrote that? Get their reason for saying that. Where did you see it here?
by chulett
Fri Mar 19, 2010 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is the action of "stage the data"
Replies: 3
Views: 1630

I'm assuming the 'question' was here rather than in an interview, so... I would think by "stage" they meant "land", to me that would be a more appropriate word.
by chulett
Fri Mar 19, 2010 7:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DIGITS function in Parallel
Replies: 6
Views: 2105

Why were you using the DIGITS transform for that kind of data? Do you sometimes have something other than digits in there? It really was meant to do something like this: DIGITS("(303) 555-2201") = 3035552201 I don't see the need with the data you posted. Just set the data type appropriatel...