Search found 42189 matches
- Wed Jun 11, 2014 7:45 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
Performance will decrease? So? Isn't the goal to get a working solution? I've already posted how you can get your desired output, 1 column or 50. And I really don't see the addition of a number of columns as any kind of performance killer. And please stop repeating your example. Repetition != helpin...
- Wed Jun 11, 2014 7:26 am
- Forum: IBM QualityStage
- Topic: TransGender
- Replies: 6
- Views: 4490
- Wed Jun 11, 2014 7:25 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
- Wed Jun 11, 2014 7:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: XML stage Error due to special character
- Replies: 7
- Views: 2450
- Wed Jun 11, 2014 7:15 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
That dummy column buys you nothing. Instead, hardcode the three column names and then pivot. Meaning, turn this input: EMPNO|ENAME|SALARY 101|AAA|10000 102|BBB|20000 103|CCC|30000 Into this: EMPNO|ENAME|SALARY|EMPNO_NM|ENAME_NM|SALARY_NM 101|AAA|10000|EMPNO|ENAME|SALARY 102|BBB|20000|EMPNO|ENAME|SAL...
- Wed Jun 11, 2014 7:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Limit to Multiple instance of sequences and D's parallel job
- Replies: 5
- Views: 2173
- Wed Jun 11, 2014 7:01 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
- Tue Jun 10, 2014 8:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Orchamdin Utility
- Replies: 6
- Views: 2506
A quick search turned this up, see if it helps.
http://www-01.ibm.com/support/docview.w ... wg21593492
http://www-01.ibm.com/support/docview.w ... wg21593492
- Tue Jun 10, 2014 1:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle Enterprise stage Load option
- Replies: 4
- Views: 1548
That's not the way a direct path load works. It bypasses the whole transaction logging mechanism which is where you get your speed - no transaction logging means no way to undo anything. When the load aborts, you get whatever you've loaded up to that point and you get whatever state the table is in ...
- Tue Jun 10, 2014 1:19 pm
- Forum: General
- Topic: Not able to Source dsenv
- Replies: 2
- Views: 2573
- Tue Jun 10, 2014 10:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle database role group handling
- Replies: 0
- Views: 850
DataStage is just another client so it obeys all access privileges the same way any other tool like sqlplus or Toad would. So I wouldn't look at DataStage directly but rather the way the grants are setup in the database and how you are referencing the table in the stage - are you including the owner...
- Tue Jun 10, 2014 10:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Check for the multiple occurance of a string & remove
- Replies: 2
- Views: 1283
- Tue Jun 10, 2014 8:21 am
- Forum: General
- Topic: Datastage (Infosphere Information Server) Sizing
- Replies: 9
- Views: 1640
- Mon Jun 09, 2014 10:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Universe program from datastage
- Replies: 4
- Views: 2476
- Mon Jun 09, 2014 6:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to find whether a substring is present in a field
- Replies: 7
- Views: 3026
Hadn't gotten to that part yet. The rub here is the comparison to reference data and an open number of occurrences too, I'd wager. Hadn't had much of a chance to ponder today how you would work that... perhaps a lookup and transformer looping to check each occurance? And then some sort of aggregatio...