Search found 3835 matches

by eostic
Wed Oct 17, 2012 7:34 pm
Forum:
Topic: Import the Business Objects Universe repository failed
Replies: 7
Views: 3022

Good to know...thanks for passing that on. As Vincent noted, some of this might be alleviated with Metadata Asset Manager, as the bridge is then often running on a dedicated machine without as many conflicts.

Ernie
by eostic
Wed Oct 17, 2012 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 6
Views: 4700

perhaps...although it would seem unlikely since these values are just chunks of xml that are passed downstream. To debug something like this I would probably ensure that these are the ONLY data rows going into the job, so that you can ensure that after the first xmlOutput Stage, you have only one ro...
by eostic
Wed Oct 17, 2012 5:29 am
Forum:
Topic: Data Lineage with Shared Containers
Replies: 4
Views: 1819

Are you on 8.5, or at 8.7 ? I haven't tested it in awhile, but I recall this working successfully in recent releases. Make sure you do a test with a simple Shared Container [like maybe just a single Transformer], just to make sure it's not an issue with a particular Stage or something odd "insi...
by eostic
Wed Oct 17, 2012 5:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output stage
Replies: 6
Views: 4700

It's hard to say....it sounds like you are doing things correctly with multiple xmlOutput Stages....I will assume that you are first building one repeating node, and then the other, and then in final creation, perhaps passing the initial xml strings via lookup into a single row. Be sure that you onl...
by eostic
Mon Oct 15, 2012 6:12 pm
Forum: General
Topic: Retrieve Partition type from Xmeta Query
Replies: 3
Views: 1409

See if the information you are looking for is in a .dsx, especially a .dsx in xml format, which can be parsed if necessary, by DataStage to pull out what you need...

Ernie
by eostic
Mon Oct 15, 2012 1:03 pm
Forum: General
Topic: How can I able to see table definitions in designer client?
Replies: 2
Views: 893

...and you do that by clicking on the toolbar "Repository"...then "Metadata Sharing" and then "Create Table Definition from Shared Table" (that will open a dialog box that shows you your FT tables and you can select them).

Ernie
by eostic
Sun Oct 14, 2012 7:15 pm
Forum:
Topic: Data lineage question
Replies: 4
Views: 1986

...and by the way, keep in mind that "DataStage TableDefs" have nothing to do with data lineage. They are an artifact of DataStage --- it's the Database Tables that Ray noted above that dictate lineage .....the Host.Database.Schema.Table objects... (these are what are imported via the Conn...
by eostic
Sun Oct 14, 2012 7:12 pm
Forum:
Topic: Data lineage question
Replies: 4
Views: 1986

Lineage works exactly as you have outlined it and illustrated it....and tablenames are DEFINITELY in the metadata for the Job and in the Repository after you imported via Connector.... so I'm not sure what you are describing.

Can you outline what problem you are having?

Ernie
by eostic
Thu Oct 11, 2012 7:08 am
Forum:
Topic: Generate Operational Metadata
Replies: 1
Views: 1237

The check box is there for Sequence Jobs just as it is for any other, and it cascades that setting to the Jobs that it controls.....

Ernie
by eostic
Wed Oct 10, 2012 7:58 pm
Forum:
Topic: XML error when importing operational metadata in WINDOWS
Replies: 3
Views: 2498

That makes sense....sorry I mis-read your original post --- I thought you were trying to import the metadata of OMD xml so you could then also read it using DataStage ....a worthwhile endeavor but I see that isn't what you were doing here. Glad it's working now.

Ernie
by eostic
Tue Oct 09, 2012 11:35 am
Forum:
Topic: XML error when importing operational metadata in WINDOWS
Replies: 3
Views: 2498

It's usually caused by the way that you are reading the file.... are you using an External Source Stage and using a unix list (ls) command to capture the file name and feed that into one of the xml Stages? If not, do some searches thru the forum here, and/or check out some blog posts I have at www.d...
by eostic
Tue Oct 09, 2012 11:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server job
Replies: 3
Views: 1585

Well....a couple of things to review. ..first, as a general comment, I would recommend that you NOT have OMD collection set at the project level. It is simply too voluminous, and except for very particular applications where you are doing your "own" work with OMD, it is probably not needed...
by eostic
Tue Oct 09, 2012 5:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server job
Replies: 3
Views: 1585

Are you starting the Job via dsjob at the command line from your central scheduler? If so, add the operational metadata flag to the command line (I don't recall the exact syntax, but it is documented). That is the best way to do selective generation of op metadata.

Ernie
by eostic
Tue Oct 09, 2012 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help while reading xml file
Replies: 5
Views: 2447

I take that back. Sorry --- the xml that you have pasted up above is not legitimate xml. There needs to be an element name collecting the various attributes for each "name" line. Did you cut and paste this from somwhere or type it in manually? <Employee Place="USA" Status="A...
by eostic
Tue Oct 09, 2012 5:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help while reading xml file
Replies: 5
Views: 2447

What everyone is saying here is to just follow the doc and give it a shot...the xml above is actually very straightforward and an excellent one to start with when learning about the various xml stages. Hint --- you'll need a table definition, and for this, the xmlInput Stage will be fine..... and sp...