Search found 3835 matches

by eostic
Fri Apr 15, 2011 2:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: repeating elements
Replies: 9
Views: 2499

Not sure....but carefully check your incoming data. And run with a tiny number of input records that you are intimately familiar with. I didn't have time to absorb all of your data values, but it "looks" like you want to have one set of repeating groups for the single combination of npi/ti...
by eostic
Fri Apr 15, 2011 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: repeating elements
Replies: 9
Views: 2499

hard to tell, but it "looks" like p2 is your "inner" repeating group, and p1 is the "parent". ....and the C and D cols are desired to be at the "parent" level. One would guess that the xpath for this looks something like: .../p1/C/text() .../p1/D/text() . . . ...
by eostic
Fri Apr 15, 2011 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: empty tags
Replies: 11
Views: 3673

Hmm. Hard to say, but it's "possible" that this change in your transformer impacted the uniqueness of your element....and then altered the aggregation. You are probably going to need to break it down and determine first if the Derivation really caused it, and then what specifically about t...
by eostic
Fri Apr 15, 2011 5:45 am
Forum: Data Integration
Topic: Linking Cognos reports to Business Glossary terms
Replies: 0
Views: 8873

Excellent work! Glad that you are at the point where you are looking for more ways to gain access to the glossary for your reporting users. Some thoughts on this.... a) The Cognos feature indeed uses javascript, exploiting a special version of the REST API that comes with Business Glossary Anywhere....
by eostic
Fri Apr 15, 2011 5:35 am
Forum: General
Topic: Concatenated XML output needs to be in separate tags
Replies: 3
Views: 1460

I know. The xmlOutput Stage does that for you. Multiple incoming rows are generated as multiple repeating nodes. But you must have multiple "rows" in order to trigger that action. Consider this example... three rows aaa 1 aaa 2 aaa 3 and you want this xml <myxml> <mainInfo>aaa</mainInfo> <...
by eostic
Thu Apr 14, 2011 12:00 pm
Forum: General
Topic: Concatenated XML output needs to be in separate tags
Replies: 3
Views: 1460

If the input you describe is really coming in like that (with column names on the link of Contact_Type1 and Contact_Type2, etc.), then you need to "pivot" the data to get multiple rows. Multiple rows = multiple repeating nodes. Take a look around the forum and at DS for various ways to do ...
by eostic
Thu Apr 14, 2011 11:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem writing multiple columns to MQ Connector in DS 8.5
Replies: 9
Views: 6783

Confirmed. The doc is correct.

Ernie
by eostic
Thu Apr 14, 2011 6:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem writing multiple columns to MQ Connector in DS 8.5
Replies: 9
Views: 6783

I seem to recall finding this also, as a difference between the Stage and the Connector. I typically find myself dealing with xml payloads, so it doesn't matter, because it's always just one column. Concatenate them beforehand, or I think you could use a Column Import and get them all into one also....
by eostic
Tue Apr 12, 2011 12:01 pm
Forum: General
Topic: What makes Connectors bettter?
Replies: 6
Views: 2669

There are a few kinks that continually get worked out, but here are some other points: a) They support Job Parameters FAR better than stages throughout all of their properties. Many properties in old stages weren't exposed in such a way that you could provide parameter values. b) They provide strong...
by eostic
Sun Apr 10, 2011 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is parallel drop?
Replies: 7
Views: 2991

Perhaps it is a new type of candy.
by eostic
Fri Apr 08, 2011 7:37 am
Forum: General
Topic: Architecture of Datastage 8
Replies: 3
Views: 2190

The exact answer, if asked such a question is.....to ask the requestor further questions..... "That is a vague question with many possible answers..."..."What would you like to know?" Would you like to understand how and why DataStage can process huge amounts of data in parallel?...
by eostic
Wed Apr 06, 2011 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading CSV(array data in "") and creating an XML
Replies: 1
Views: 952

This one looks like it has a variety of challenges. a) the need to get the multiple columns into multiple rows....the B's as a set and the C's as a set.....independent paths doing pivots will be needed for that. b) the need to treat them as independent repeating nodes of a multi-path xml document. L...
by eostic
Wed Apr 06, 2011 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output aggregating data for any kind of input data
Replies: 1
Views: 1063

probably best to just "make it unique". Put a new column at the detailed level in an upstream transformer. Give it a unique value, such as @INROWNUM. Put it at the lowest level of your xml document, giving it similar xpath (same as Col1 with its own element name, like "dummy"). S...
by eostic
Tue Apr 05, 2011 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: xmla scripts in datastage
Replies: 14
Views: 5946

One can only guess from the details of this thread that xmla is nothing more than an executable that "receives" its arguments, commands and properties from an xml document. Perhaps xmla is "the" command from (said vendor) that looks for an xml document like the ones in this threa...