Search found 3835 matches

by eostic
Tue Jun 30, 2009 8:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job compatibility issues between V7.5.2 and 8.1
Replies: 3
Views: 1505

There have been a few thoughts on this topic in the forum....search around....but for a few other considerations... QualityStage is totally integrated now, into DataStage. This is one of the most significant reasons, outside of new stage type functionality that is here or coming on top of the 8.x pl...
by eostic
Mon Jun 29, 2009 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP(iDOC) to XML format
Replies: 0
Views: 1629

I would suggest that you first research each of these topics as a separate unit, and apply that also to your testing and learning curve. Search extensively thru the forum here on each of the thre major pieces....review the doc for each....write simple jobs that explore and test each separately befor...
by eostic
Sun Jun 28, 2009 8:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input Stage
Replies: 4
Views: 1631

Hard to say... most likely a typo or other error in the Description property. Check all the columns. Be sure that the columns parsed by a prior XMLInput Stage have NOTHING in the Description property.

Ernie
by eostic
Sat Jun 27, 2009 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input Stage
Replies: 4
Views: 1631

Putting together multiple independent nodes requires that you build it in pieces... search thru the forum to find references to Kim Duke's website and a document he keeps there called Best Practices for XML.....a document written by one of our developers several years ago. Nice document that describ...
by eostic
Wed Jun 24, 2009 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output
Replies: 8
Views: 4803

I think I see the issue. Sorry I didn't notice it before. In order to get DataStage XMLOutput to treat these as separate elements (whether in a greater parent or not, which you still may need to do), you need to get them truly into two rows. I failed to notice first time around that the columns are ...
by eostic
Mon Jun 22, 2009 8:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output
Replies: 8
Views: 4803

You may need to group those together, as they probably should be in their xsd..... for the sake of testing, try wrapping those three elements in a larger element, such as "detail": .../detail/add1/text() .../detail/add2/text() .../detail/city/text() Make one of them the repeating element a...
by eostic
Fri Jun 19, 2009 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading XML messages from MQ...
Replies: 5
Views: 1808

there is a specification in the root of the document for the name of the xsd. If specified there, and if available to the DataStage engine, you can check the validate box and it will validate the current document against that particular schema..... lookup "xml schema validation" on the web...
by eostic
Thu Jun 18, 2009 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading XML messages from MQ...
Replies: 5
Views: 1808

Have an xsd that defines the formal elements....then check for validation..... "new" or "strange" elements will result in a rejection that can be captured down a separate link.

Ernie
by eostic
Thu Jun 18, 2009 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem while processing xml file
Replies: 11
Views: 5049

You still should try having "multiple" XMLInput Stage instances.... not just multiple links coming from one. Get the XML to be processed in separate processes and see what impact that has...

Ernie
by eostic
Wed Jun 17, 2009 12:00 pm
Forum: IBM QualityStage
Topic: Standardization:Using the seq file extractd from xml
Replies: 9
Views: 9933

Hard to say what to advise you here, except that you need to start breaking things down to find out where it works and where it blows up. Reduce it dramatically. Follow your XML stage with a transformer and exclude all but maybe 3 columns and maybe 1 row. Be certain that they are 100% character. See...
by eostic
Wed Jun 17, 2009 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem while processing xml file
Replies: 11
Views: 5049

have you tried sending the data from the flat file, thru a transformer to many XMLStages? If it's such a painful XML document to parse, perhaps you will have gains by using interprocess and having those xml documents work concurrently. This might cause you bottlenecks later on, but its worth looking...
by eostic
Wed Jun 17, 2009 11:53 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Deploy a DS Job as a Web Service
Replies: 11
Views: 7744

...but it's hard to tell here, because Nicole is seeing "some" of the signs that it would have been licensed.... still, better safe than sorry. Find out the formal licensing and then look at options for configure/install/re-install, etc.

Ernie
by eostic
Wed Jun 17, 2009 11:52 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Deploy a DS Job as a Web Service
Replies: 11
Views: 7744

absolutely.
by eostic
Wed Jun 17, 2009 11:48 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Deploy a DS Job as a Web Service
Replies: 11
Views: 7744

First, contact your rep and find out exactly what licenses you have. Then its probably time for a support call to determine the best steps to take. It would seem that you could run the install again and be certain to choose Information Services Director, but there may be other particulars.

Ernie
by eostic
Wed Jun 17, 2009 5:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem while processing xml file
Replies: 11
Views: 5049

Without knowing things about your machine, it's not possible to be sure that this will help, but consider that there may be some benefit to using Inter-process row buffering in combination with manual parallelism to send the rows to independent XMLInput Stages....and then re-collect them later. If t...