Search found 42189 matches
- 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
- 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...
- 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 ...
- 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
- 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...
- 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...
- 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
- 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
- Thu Apr 24, 2014 2:40 pm
- Forum: General
- Topic: RT_LOG Maintenance
- Replies: 8
- Views: 1943
- Thu Apr 24, 2014 2:36 pm
- Forum: General
- Topic: Cleaned up $DSHOME/errlog, but still have questions!
- Replies: 14
- Views: 6134
- Thu Apr 24, 2014 1:06 pm
- Forum: General
- Topic: RT_LOG Maintenance
- Replies: 8
- Views: 1943
- 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.
- Thu Apr 24, 2014 8:43 am
- Forum: General
- Topic: Cleaned up $DSHOME/errlog, but still have questions!
- Replies: 14
- Views: 6134
- 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?...
- 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...