Search found 3835 matches

by eostic
Mon Jun 04, 2012 11:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML file in windows through external source
Replies: 23
Views: 7738

It's possible that we are chasing the wrong problem.....the directory you see in the error is what the xml stage produces..... First, re-write your Job. Delete the xmlInput Stage and just have a Sequential Stage. Make sure you are getting a proper list of files from that subdirectory in your Externa...
by eostic
Mon Jun 04, 2012 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal representation as Double datatype in xml stage
Replies: 4
Views: 2061

Then treat the data as character, which is what it is. Don't let the software do any kind of interpretation for you. Take 100% control. Make all of your columns char or varchar, pull out the pure strings from the xml tags...... ...focus on the "parsing", and get the strings "as they a...
by eostic
Mon Jun 04, 2012 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML file in windows through external source
Replies: 23
Views: 7738

I haven't tried it in windows in a long time, but memory tells me that it just assumed C: ....pretend that it is Unix, leave out the C: entirely, switch your slashes the other way, and try ls /DataStage/.../.../.../

Ernie
by eostic
Thu May 31, 2012 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal representation as Double datatype in xml stage
Replies: 4
Views: 2061

are you using the XML Stage or the xmlOutput Stage?

Ernie
by eostic
Wed May 30, 2012 11:59 am
Forum:
Topic: Linking BI report assets to Implemeted Data Source Assets
Replies: 10
Views: 3719

Hi John... Some further detail... The key with lineage for BI reports is finding out whether or not the bi objects were "imported" with already connected database information. That database information becomes the simplest "linkage point" for tying individual reports to something...
by eostic
Sun May 27, 2012 5:39 pm
Forum:
Topic: Linking BI report assets to Implemeted Data Source Assets
Replies: 10
Views: 3719

There are steps that have to be carefully followed.... Assuming you imported your Cognos metadata successfully, then as Ray notes, you should have lineage from reports and various BI items, back thru the tables in the Implementation Model. A key thing to check is to be sure that the "database c...
by eostic
Thu May 24, 2012 5:46 am
Forum: General
Topic: new xml redbook published today...
Replies: 1
Views: 845

new xml redbook published today...

Hi Everyone.... The new XML Redbook was published today! I had the pleasure of reviewing it along the way. My colleagues did an excellent job outlining how reading and writing XML content with DataStage and QualityStage was dramatically enhanced (initially in 8.5).... Check it out when you can or be...
by eostic
Thu May 24, 2012 5:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output - Text inside opening tag
Replies: 1
Views: 783

this this....number is not contained by type....

.../customers/customer/number/@encrypted
by eostic
Tue May 22, 2012 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Working of Link Ordering
Replies: 16
Views: 5665

PS.... I haven't tried it in quite a few releases, but I did a research project years ago where I traced the path of a single row and value, using the debugger, with breakpoints all over the place and then turning inter-process row buffering on or off.....it was very insightful, showing how and wher...
by eostic
Tue May 22, 2012 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Working of Link Ordering
Replies: 16
Views: 5665

It's a setting at the Job level (job properties) ...OR...might also be at the Project level (something I do NOT recommend). It implements pipeline-style parallelism by default for Server Jobs....there are quite a few threads in here on the subject if you do some searching. As it relates to this part...
by eostic
Mon May 21, 2012 6:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Issue
Replies: 4
Views: 2293

Hard to say. There were a variety of patches to the xml Stage in early 8.5....be sure you are at least at 8.5 with FP1 or preferably 8.7.
by eostic
Mon May 21, 2012 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Working of Link Ordering
Replies: 16
Views: 5665

also check interprocess row buffering...that will dramatically impact the normal default "process each link thru completion" behavior.

Ernie
by eostic
Fri May 18, 2012 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parse xml which has hierarchical data
Replies: 8
Views: 8069

if they are nested, it can be done with either Stage, and in a single output link...if you use the new Stage, be sure you have at least FP1, and you need the xsd. If you don't have the xsd, you'll need to generate one, or use the xml Input Stage. With the new Stage, initially have a parsing step tha...
by eostic
Thu May 17, 2012 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parse xml which has hierarchical data
Replies: 8
Views: 8069

are the 5 levels independent of each other? ...meaning, not nested, but entirely independent in meaning and number of occurrences (imagine a company with a node for employees and another node for products). If they are truly independent, then it can absolutely be done with one single Stage, in the o...