Search found 42189 matches

by chulett
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...
by chulett
Wed Jun 11, 2014 7:26 am
Forum: IBM QualityStage
Topic: TransGender
Replies: 6
Views: 4490

<click>
by chulett
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

Awesome. Another "example" with made up data that doesn't match what really needs to be done. Would it have killed you to have mentioned that in the original post? And repeating everything with just one column as the example doesn't help nor change anything, my answer is still my answer. :...
by chulett
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

:!: New problem = new post.

Please take the text that I italicized in your post and start a new post with it. Minus the italics of course.
by chulett
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...
by chulett
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

I'm not sure you should be worrying about that. I very much doubt that your hardware will support 900 concurrent Parallel jobs, let alone any sort of a higher number.
by chulett
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

So, which part isn't working - the sort, the transformer or the remove duplicates? Seems to me you'll need to hardcode all three values, pivot then the concatenation and finally remove duplicates.
by chulett
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
by chulett
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 ...
by chulett
Tue Jun 10, 2014 1:19 pm
Forum: General
Topic: Not able to Source dsenv
Replies: 2
Views: 2573

Technically, you are able to source it, it just doesn't like what you've told it to do. That error needs to go to your SA and you need to figure out what specific line that is coming from.
by chulett
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...
by chulett
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

This seems to me like something you are better off doing in C++, say in a BuildOp for example.
by chulett
Tue Jun 10, 2014 8:21 am
Forum: General
Topic: Datastage (Infosphere Information Server) Sizing
Replies: 9
Views: 1640

Or engage IBM, as Eric suggested in the post I linked to.
by chulett
Mon Jun 09, 2014 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe program from datastage
Replies: 4
Views: 2476

As noted, doesn't really matter as nothing about this has changed.
by chulett
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...