Search found 3835 matches

by eostic
Mon Aug 03, 2009 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Redefine clause in XML file
Replies: 5
Views: 1851

An element that is "unbound" is going to help you define "one" of your output links..... So...you might have a document for a company (one single company) that has a node for "employees".... it is probably unbounded....nested in there, you might have a node for "jo...
by eostic
Mon Aug 03, 2009 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Single Line
Replies: 18
Views: 4838

Now, that's certainly strange. Is that also when you use our little 3 column example above with col1, col2 and col3?

Ernie
by eostic
Thu Jul 30, 2009 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to import XML files in parallel jobs?
Replies: 8
Views: 3045

Do some searches...there are many entries that describe how this is done and entries that point to other resorources here and on the web.

Ernie
by eostic
Wed Jul 29, 2009 6:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage MVS version to IIS v8.x
Replies: 3
Views: 1512

As Ray notes.....staying with MVS Edition and moving to v8 is a fully supported activity...... ...on the other hand, moving from MVS edition to an alternate platform version (such as moving MVS to Linux IIS v8) is another story --- though still conceptually do-able from a learning curve and graphica...
by eostic
Wed Jul 29, 2009 5:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Redefine clause in XML file
Replies: 5
Views: 1851

....the xml document is still the xml document, regardless of the xsd's (however many) needed to define it.

Define your metadata from a sample xml instance and don't look back. Your datatypes will all be varchar and 255 or similar, but so what? XML is all char anyway.

Ernie
by eostic
Wed Jul 29, 2009 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Single Line
Replies: 18
Views: 4838

PS....I saw this once a long time ago when I was building SOAP bodies for input into WSTransformer.... on a whim, also do a test where you add about 4 or 5 more columns (just create some dummies in a prior Transformer and give them the xpath that uses the same pattern as above). I can't remember the...
by eostic
Wed Jul 29, 2009 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Single Line
Replies: 18
Views: 4838

hmmm.... it looks like you have the xpath and everything correct, so it might just be an oddity in the values. There are still ways to skin this cat, but let's prove it first. What happens when the values coming in are 100% unique? (ie...where Name and City are each truly unique strings in each row)...
by eostic
Tue Jul 28, 2009 10:12 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Export for integration of MDM and IIS
Replies: 7
Views: 5803

It's not clear at this point what the issue is. I'd first figure out why this service isn't working, fix it and then determine why perhaps the export/import has a problem. Re-deploy it (the QS job) from scratch...do you still have the problem? Deploy it instead with the SOAP binding....debugging it ...
by eostic
Tue Jul 28, 2009 10:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Single Line
Replies: 18
Views: 4838

I'm not sure I can be any more explicit than what I have up above... First, I am assuming that you have (in the example) two rows coming into the XMLOutput Stage....and you want "one row" going out. So...for example, a flat file with two rows, or a relational table with two rows and three ...
by eostic
Mon Jul 27, 2009 4:57 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Export for integration of MDM and IIS
Replies: 7
Views: 5803

If I remember correctly, MDM server uses the EJB binding. Deploy also with SOAP over HTTP and test with a tool like SOAPscope. See if it fails in that unit test.

Ernie
by eostic
Mon Jul 27, 2009 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Single Line
Replies: 18
Views: 4838

Make sure you choose aggregate and not trigger, and be sure that you have a summary style node structure in your xpath.... Something like: for a link that has 3 columns: col1, col2, col3.... have xpath (the Description attribute) that has: /myRows/myRow/col1/text() /myRows/myRow/col2/text() /myRows/...
by eostic
Sun Jul 26, 2009 12:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to load in XML file
Replies: 5
Views: 1925

Could be an xpath issue.... Could also be an environment issue. To be sure, add an output link to the XMLOutput Stage and send the info to another I/O stage...like sequential. Put a single column on the output link, with varchar and some long length..put a single '/" in the Description property...
by eostic
Sun Jul 26, 2009 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: want a XML format from Sequential file
Replies: 2
Views: 993

Can you be more explicit...it's not exactly clear what you are looking for.....

look thru the threads here...find the best practices document at Kim Duke's site..... there's a lot on creating and managing XML.....

Ernie
by eostic
Sun Jul 26, 2009 11:54 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Export for integration of MDM and IIS
Replies: 7
Views: 5803

ISD has a project level export....
by eostic
Sun Jul 26, 2009 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Single Line
Replies: 18
Views: 4838

Is it pretty printing that you are looking for? ...or a truly single document? ...if it's pretty printing, follow the advice above...you shouldn't be needing to worry about it, as noted. ....but if it's a "single" xml doc, it might be an issue in the way you are specifying things.... ...fi...