Search found 42189 matches

by chulett
Fri Sep 20, 2013 6:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Choosing between connector and enterprise DB stages
Replies: 4
Views: 2562

Definition of deprecation as it refers to software in case that term is unfamiliar to people. As noted, from what I've read IBM assumes you will switch over to Connector stages in all cases as the old ones are technically there for backwards compatibility and may go the way of the wind in a future r...
by chulett
Fri Sep 20, 2013 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to divide the xml value in Datastage without xml input
Replies: 5
Views: 1826

Re: Xml

Noted:The only reason i opted to perform above because xml input stage requires XSD stored some where and results the warning stating "The primary document entity could not be opened". No, it doesn't. The new XML stage does but the older ones certainly do not require them. Leverage, yes, ...
by chulett
Fri Sep 20, 2013 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage in 8.1 is unnecessarily grouping elements
Replies: 4
Views: 3118

Just want to point out that the Trigger Column has nothing to do with 'grouping'. It is simply a value that - when it changes - forces a change in output filename, closing the current file and opening a new one.
by chulett
Fri Sep 20, 2013 9:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Target Load Order
Replies: 5
Views: 2629

And we still need a clarification from Roopanwita as to what exactly it is they are needing help with.
by chulett
Fri Sep 20, 2013 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to divide the xml value in Datastage without xml input
Replies: 5
Views: 1826

Then you are firmly in the Camp Substring. You can use Index() to find the information that Substring() will need. What does "grow on demand" mean?
by chulett
Fri Sep 20, 2013 7:17 am
Forum: General
Topic: dsjob -run command clarification
Replies: 3
Views: 1488

Exactly. That should be part of any home-built "job running script" that your scheduler is leveraging.
by chulett
Thu Sep 19, 2013 9:47 pm
Forum: General
Topic: dsjob -run command clarification
Replies: 3
Views: 1488

You reset an aborted job to get it back to a runnable state. Since your job is not Aborted, that is a 'bad state' as far as the reset is concerned. The default mode is to run in NORMAL mode, which is why it works when you take the mode out.

Details here.
by chulett
Thu Sep 19, 2013 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How To Generate Dynamic Target File Based On Column Value
Replies: 7
Views: 3098

eostic wrote:Sequential stage in 9.1 does this. Folder Stage in Server also does this, in any release.
Thanks... 9.1, eh? Was going to mention the Folder stage but it is somewhat of a PITA to use as a target and tends to confuse the crap out of people attempting to use it. :wink:
by chulett
Thu Sep 19, 2013 10:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How To Generate Dynamic Target File Based On Column Value
Replies: 7
Views: 3098

Yah... you're right, that's just adding the column name to the input stream. I'd be curious what Andy or Ray have to add because I could swear it was added 'recently' to the product and one of them mentioned that fact. Or perhaps Vincent^H^H^H^H^H^HErnie. Could be wrong, however. :? Old School would...
by chulett
Thu Sep 19, 2013 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing spaces and certain characters in a string
Replies: 4
Views: 1157

Come on... how about you put a little effort into solving the problem first? Then show us what you've tried and what's not working and we'll help nail it down for you. If the Field() suggestion is throwing you, you can use it to take the first field from your "@" delimited string. The rest...
by chulett
Thu Sep 19, 2013 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How To Generate Dynamic Target File Based On Column Value
Replies: 7
Views: 3098

Sorry, can't seem to find the details at the moment but did find this in my searches:
ray.wurlod wrote:Sequential File stage has the ability to generate the file name into an output column.
Hopefully someone can provide details on the 'how' of it.
by chulett
Wed Sep 18, 2013 1:45 pm
Forum: General
Topic: Loop Activity on Time interval
Replies: 4
Views: 1055

asorrell wrote:I've never done it, but I believe using a Sequencer you could funnel Job#2 back into the "loop" prior to the EndLoop so you could continue the "Test / Sleep / Execute" cycle.
I have and yes you can via a Sequencer set to 'Any'.
by chulett
Wed Sep 18, 2013 1:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple file reading using file pattern
Replies: 5
Views: 2864

Sorry, I have nothing useful to say other than - dang, I would have thought they would have fixed / handled that by now. :?

Well... you could probably handle this via sed / awk / grep in the Filter option of the stage.
by chulett
Wed Sep 18, 2013 11:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Target Load Order
Replies: 5
Views: 2629

That topic is specifically about multiple "pipelines" - jobs within a job. Is that what you have? Or do you have a single (quote normal unquote ) job that writes to multiple target tables with FK dependencies between them?
by chulett
Wed Sep 18, 2013 9:23 am
Forum: General
Topic: Loop Activity on Time interval
Replies: 4
Views: 1055

So answer is no, at least not directly. I've done "time based" loops by setting a duration for each loop and then looping how ever many times it would take for that number of loops to hit my end time. You can also use a custom routine to check the current time inside the loop and exit (bra...