Search found 42189 matches

by chulett
Sun Apr 27, 2014 8:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit only after the parent and child table are loaded
Replies: 13
Views: 4708

Pretty sure as the name implies they are only leveraged when doing "upserts" in the stage... "insert else update" or the reverse.
by chulett
Sun Apr 27, 2014 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit only after the parent and child table are loaded
Replies: 13
Views: 4708

Not asking if you are using any 'special' settings, just how you have it configured. What options are you using in the Connector - are you automatically generating the SQL? What write mode are you using? Etcetera etcetera. And still wondering what commit level it is actually using then that option i...
by chulett
Sun Apr 27, 2014 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Refresh Environments - Issue related to hashed files
Replies: 10
Views: 4684

You may already know this but hashed files can be copied easily provided one of two conditions are met: 1. They are 'pathed' hashed files, meaning were not created in an account 2. Your account-based hashed files already exist in the target location New account-based hashed files would not be found ...
by chulett
Sun Apr 27, 2014 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit only after the parent and child table are loaded
Replies: 13
Views: 4708

Normally you would set the Record Count to zero to accomplish that. With it disabled, any idea what it is actually using when the job runs? I haven't been able to find any reference material online as of yet that discusses this situation. What settings are you using in the Connector?
by chulett
Sat Apr 26, 2014 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 7
Views: 2406

Re: Reply

Stage Variables : svValue : if svKey = Input.Key then svValueOld:':':Input.Value else Input.Value svKey : Input.Key svValueOld : svValue You only need two as there's no need to save the 'old' value, just the key: svValue: if Input.Key = svKeyOld then svValue:':':Input.Value else Input.Value svKeyOl...
by chulett
Fri Apr 25, 2014 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: vertical pivot
Replies: 7
Views: 2406

You would use Transformer Looping to go the other direction, columns to rows. This is transformer concatenation and Remove Duplicates, retaining the last duplicate. Edited to clarify the fact that by 'aggregation' I meant aggregate the values in the transformer via concatenation, not the stage of th...
by chulett
Fri Apr 25, 2014 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure (code 11)
Replies: 2
Views: 1378

Contact your official support provider. That 'solution' seems a little... ridiculous. Also do an exact search here for "Parallel job reports failure (code 11)" and see if any of the other matches help.
by chulett
Fri Apr 25, 2014 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does DS support insert into XXX(XX) select from XX statement
Replies: 4
Views: 1615

Since they're not numbered (as in Oracle) you have to realize that only columns marked as Key columns get used in the 'where' clause. Guessing yours isn't.
by chulett
Thu Apr 24, 2014 2:40 pm
Forum: General
Topic: RT_LOG Maintenance
Replies: 8
Views: 1943

jonesv wrote:I will check Mr. Bland's site for his utility
He released the code here in the post I linked to. And several more, if I recall correctly, which a search by author could turn up. Not sure he maintains his site any longer nor allows any new access.
by chulett
Thu Apr 24, 2014 2:36 pm
Forum: General
Topic: Cleaned up $DSHOME/errlog, but still have questions!
Replies: 14
Views: 6134

Sure... if I had access to DataStage. :P

Now I am forced to rely on the kindness of strangers.
by chulett
Thu Apr 24, 2014 1:06 pm
Forum: General
Topic: RT_LOG Maintenance
Replies: 8
Views: 1943

However, couldn't those "purge settings" match the default? Just trying to clarify the difference between them being non-default and actually different. Perhaps that's not an issue if all you care about are which ones have been 'overridden'.
by chulett
Thu Apr 24, 2014 10:01 am
Forum: General
Topic: RT_LOG Maintenance
Replies: 8
Views: 1943

There are some utilities that Ken Bland posted once upon a time, some of which deal with purge settings. See if this helps or at least gets you a good starting point.
by chulett
Thu Apr 24, 2014 8:43 am
Forum: General
Topic: Cleaned up $DSHOME/errlog, but still have questions!
Replies: 14
Views: 6134

Yes. Yes it does. <shudder>
by chulett
Thu Apr 24, 2014 6:55 am
Forum: General
Topic: Cleaned up $DSHOME/errlog, but still have questions!
Replies: 14
Views: 6134

Re: Cleaned up $DSHOME/errlog, but still have questions!

I do not recommend changing it on a lark. I like lark. Especially their tongues. In aspic. Sorry, first thing that popped into my head after reading that line. <goes back to eating his popcorn and enjoying the movie Andy is filming> Actually, a real question - I remember P and T but what's R again?...
by chulett
Thu Apr 24, 2014 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Multiple Format Flat File
Replies: 9
Views: 7230

I've done something very much like this in Server many moons ago. It also involved an internally generated sequencing value to help group things (perhaps even two? inner and outer?) and then a custom Sort collating sequence to get the internal records per group in the correct order. Perhaps that las...