Search found 3835 matches

by eostic
Tue May 01, 2012 5:39 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Simple demo of publishing a DS/QS Job as a Service
Replies: 0
Views: 2383

Simple demo of publishing a DS/QS Job as a Service

If you ever wondered what Information Services Director is, or need a quick refresher on how to publish a DataStage or QualityStage Job as a Service, check out this link at YouTube... http://www.youtube.com/channel/UCVFAoFT_zaVF_JWHGz-8d5w?feature=guide Not trying to simply make a "plug" f...
by eostic
Thu Apr 26, 2012 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML stage gets "Parallel job reports failure (code 11)
Replies: 5
Views: 3448

...and if it's a memory issue, then start looking at things like: a. does it only fail with "this" particular xml document? (is it big?) b. does it fail with ANY document? (even tiny ones) c. if it's just "this" document, how big is it? anything special about it? particular nodes...
by eostic
Wed Apr 25, 2012 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A pretty straightforward XML question
Replies: 1
Views: 2430

Hi Richard... Welcome to the world of xml and DataStage! DataStage looks at repeating nodes as you describe as a "set" of "child values" potentially related to a particular parent. This is no different than a 1:many relationship between tables in an rdbms, or the repeating group ...
by eostic
Tue Apr 24, 2012 3:12 pm
Forum: General
Topic: Impact Analysis: Find list of jobs using a Job parameter
Replies: 3
Views: 1076

Metadata Workbench can tell you some of this.....it will find all the Jobs that use a particular Job Parameter (or Parameter that is a member of a Parameter Set).

Ernie
by eostic
Fri Apr 20, 2012 6:38 am
Forum:
Topic: Where to stick Business Glossary logo file?
Replies: 7
Views: 3446

Just be careful and be sure to document its location for yourself or your internal support team....that location is likely to get blown away when you apply a patch.... There are several of those that you can use -- the key is in understanding the web root.....(internally in a web server, there is a ...
by eostic
Fri Apr 20, 2012 6:29 am
Forum: General
Topic: Datastage App using API
Replies: 7
Views: 9823

...thanks for the memories, lstsaur! Indeed, RTI in production offered a WSDL that basically wrapped the classic Job Control API. Accessing the new Ops Console remotely from my BB is one I haven't tried........don't know what kinds of browser requirements it has. I'll have to put that one on the lis...
by eostic
Fri Apr 20, 2012 6:26 am
Forum: General
Topic: IBM presentation of Information Server Operations Console
Replies: 1
Views: 1848

Great, Aaron! I will try to be there.....

The Ops Console is very cool, folks --- don't miss this one.

Ernie
by eostic
Fri Apr 20, 2012 6:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom Output FileName in XML_Output Stage
Replies: 2
Views: 950

Not sure exactly, but it's possible that a Server Job and the Folder Stage will work....it lets you dictate filenames by a column value.... For the xml Output Stage, the trigger that you are using will release individual documents to the output link if you create one. Add an output link and put one ...
by eostic
Tue Apr 17, 2012 8:52 am
Forum: General
Topic: Unable to query the Datastage Repositary tables
Replies: 5
Views: 1669

Perhaps, but it's ugly and we ought to start a campaign to change it. :)
by eostic
Mon Apr 16, 2012 11:31 am
Forum: General
Topic: XSD validation for Messages from MQ
Replies: 3
Views: 1196

The Stage only works when the name of the xsd is "in" the header....after you read the payload from MQ, run it thru a transformer and "zap" the correct xsd into it. If you are using xmlInput, that's the only way to do it. If the messages are not "too" big, it should be ...
by eostic
Mon Apr 16, 2012 6:58 am
Forum: General
Topic: XSD validation for Messages from MQ
Replies: 3
Views: 1196

The validation is done via the xmlInput Stage, or, if you are on 8.5.x or 8.7, with the xml stage.....in the former, the xsd is stored somewhere on the DataStage server and pointed to within the header of the incoming document (it's "possible" the it may find the xsd via url, but there wer...
by eostic
Sun Apr 15, 2012 6:18 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: How to read data from IADB
Replies: 6
Views: 4043

In 8.5 IA introduced a REST-like API. That's your best method to access results from IADB. I haven't used it much except to play with it initially, but I've talked to people who have done some very cool things with it. Here's a primitive "template" example that one of my colleagues wrote.....
by eostic
Fri Apr 13, 2012 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Repition Elements in XML
Replies: 5
Views: 2376

Congrats! It takes a little getting used to, but basically, this is exactly what you need to do in order to tear apart any form of hierarchy. Turn it into the "rows" that it might be if the source XML were instead just a big collection of relational tables with some common keys (the higher...
by eostic
Thu Apr 12, 2012 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Repition Elements in XML
Replies: 5
Views: 2376

This new error has nothing to do with repeating elements.... check out this entry and then use the External Source stage to read your file... http://dsrealtime.wordpress.com/2007/12/04/reading-xml-content-as-a-source/ ...and if you are using an intermediate flat file between jobs, be sure to use NO ...
by eostic
Wed Apr 11, 2012 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Repition Elements in XML
Replies: 5
Views: 2376

This doesn't tell us enough to help. Create another Job. Have just "one" link coming from your xmlInput Stage. Send it to flat file. Make sure that link is retrieving a particular single repeating node (and its parents) correctly. Then proceed to create another link for any other lowest le...