Search found 3835 matches

by eostic
Mon Nov 01, 2010 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input stage
Replies: 9
Views: 5987

do you have two columns checked as a "key"....? each link can only have one column marked as a key...it should be one of the columns "in" the repeating element.
by eostic
Sun Oct 31, 2010 6:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output stage
Replies: 7
Views: 1846

Spend some time on the forum looking thru XML posts...in particular, make sure you download and do a thorough read of the XML Best Practices (it's on Kim Duke's web site...you'll find that url in lots of places). You have two repeating units (so far)......number and attributes. They have to be built...
by eostic
Fri Oct 29, 2010 5:07 pm
Forum: General
Topic: Dubious 'Standards'
Replies: 8
Views: 2073

It's non-negotiable decisions like that which ultimately lead to higher costs of ownership.....there are pros and cons to everything. This same site will potentially be in a situation 3 years from now when they have serious DataStage experience but their long time DBAs have all left the company....a...
by eostic
Fri Oct 29, 2010 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input stage
Replies: 9
Views: 5987

It works. I just did a test with your snippet of xml (btw...it is very invalid xml... where did you get this snippet from? I'll assume for the moment that you typed it in? It's missing proper close tags and the spaces in the element names are a problem too...perhaps they are underscores in your actu...
by eostic
Fri Oct 29, 2010 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input stage
Replies: 9
Views: 5987

Well....you're on the right track if you have been able to retrieve the parent info ok. Ultimately you will need a minimum of two links to retrieve this data, because there are at least two independent repeating nodes....Item Desc and Item Grade Name. I'm a little concerned about the lack of a conta...
by eostic
Fri Oct 29, 2010 5:59 am
Forum:
Topic: Whether Datastage 8.X Bussiness Glossary have single sign on
Replies: 2
Views: 2182

I'm not an expert on the "details" of it, but many customers I speak to on this topic have implemented an LDAP solution....and then the mainstream products such as Information Server and Business Objects, etc., will typically support LDAP as an authentication mechanism. This way the user n...
by eostic
Thu Oct 28, 2010 7:33 pm
Forum: General
Topic: Dubious 'Standards'
Replies: 8
Views: 2073

...and forget about Data Lineage with a 100% SP solution.... Data Lineage can be done with SP's but not without a whole lot more effort than just doing things in DataStage either via auto generation of SQL or even user-defined. I talk to sites who are in the process of moving away from unmanageable ...
by eostic
Thu Oct 28, 2010 5:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The IOD 2010 Demo of the new DataStage XML Transformer
Replies: 6
Views: 2658

....and for now there is no migration....choose the new XML Pack as you move forward, are looking for better performance, or need new functionality. As with anything, there are always decisions to be made....if I have a Job that reads a very small XML document from an MQ message queue, and I know it...
by eostic
Thu Oct 28, 2010 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The IOD 2010 Demo of the new DataStage XML Transformer
Replies: 6
Views: 2658

Excellent question. Right now, no changes. They exist "as is" and continue to function "as is".

Ernie
by eostic
Thu Oct 28, 2010 12:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata Import
Replies: 13
Views: 5962

What tooling are they using to dump the files? There are lots of tools out there that will put the column headers into the first line.....perhaps they are using a method that supports this..... ultimately that's all you need and will be the simplest for everyone if the files are pure ascii delimited...
by eostic
Thu Oct 28, 2010 7:38 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Multiple Instance of JOb starting...
Replies: 1
Views: 2424

Multiple instances and "starting every two minutes" are two different things....... The only reason it would "start another instance" every two minutes would be because you still are not at the minimum, and ISD needs to start additional ones. Either that or you have your minimum ...
by eostic
Thu Oct 28, 2010 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Working with XML
Replies: 3
Views: 1242

Look at the output link of your XML Input Stage.....go to the Descriptions of each column..... chances are, the elements you are retrieving are missing the final /text() from the xpath syntax. Without the "text()" it means "get the whole element"....... ....so it should be .../.....
by eostic
Thu Oct 28, 2010 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The IOD 2010 Demo of the new DataStage XML Transformer
Replies: 6
Views: 2658

Yes...but that's not new.....it is just like the existing pack has always allowed you to read 100's of documents that use the same schema, in one shot, at one time, with all their rows in a single load.

Ernie
by eostic
Wed Oct 27, 2010 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The IOD 2010 Demo of the new DataStage XML Transformer
Replies: 6
Views: 2658

Great pointer, Vincent, and even greater post in your blog! The new XML Pack also specifically helps with a lot of things we've seen in threads here on dsXchange --- such as reading extremely large documents --- it streams them so it reads them just fine, and it reads them much faster. It also optio...
by eostic
Wed Oct 27, 2010 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata Import
Replies: 13
Views: 5962

No "direct" way that I know of to import a SQL create stmt "as is". I've seen a whole lot of solutions over the years, such as creating a .dsx (look at one for a table, it's a very simple format), or using the manual shared table creation method that I describe below at my blog. ...