Search found 3835 matches

by eostic
Mon Jun 06, 2011 7:06 am
Forum: General
Topic: Exporting PROJECT in XML format
Replies: 14
Views: 4897

How often are you doing it? Develop a loop in a script with a list of necessary Jobs and you'll have what you need, running multiple exports in sequence........it might take a awhile, but so what? It's unlikely that you are running something like this on every Job, every 5 minutes. I suspect you are...
by eostic
Fri Jun 03, 2011 1:44 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Web Service
Replies: 10
Views: 6298

Check to see if it is a volume issue and not an environment or Oracle issue......send the exact same data to a flat file. ...btw....what binding are you using? I will assume SOAP or XML for now... Write another Job that reads from that flat file and goes to ISDoutput. Publish it as a Service. I will...
by eostic
Fri Jun 03, 2011 1:34 pm
Forum: General
Topic: Exporting PROJECT in XML format
Replies: 14
Views: 4897

I looked into this awhile back, when I was writing a parser in DataStage to read the export as "xml"..... as far as I know, there is no "command line" way to do a wholesale project xml export. You may have to do individual Jobs, by first obtaining a job list, perhaps via dsjob. E...
by eostic
Wed Jun 01, 2011 9:09 pm
Forum: General
Topic: Scripts involved in Application enable/disable
Replies: 6
Views: 2340

This "sounds" like an Information Services Director question, and the desire to perform an enable/disable of a particular application at the command line instead of doing it at the "Deployed Applications Workspace" of the Information Server Console (not the Web Console, the conso...
by eostic
Wed Jun 01, 2011 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Improve XMLInputPx stage performance
Replies: 1
Views: 1477

Indeed....the new XML Stage is far faster.....how much faster will depend on a lot of things, like the number of tags, their size, etc. As for your existing Job, consider breaking it up via EE as well as via functions in the Stage itself...I've had success (again, it depends on the document) improvi...
by eostic
Tue May 31, 2011 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML output fails validation against XSD
Replies: 4
Views: 1808

Don't. Best practice is to not format it...it only causes problems for other software and creates wasted space on disk or on the wire. Nowadays just open your xml with a tool (IE, firefox, most editors, etc.) that makes it pretty for you....

Ernie
by eostic
Tue May 31, 2011 5:45 am
Forum:
Topic: Importing a physical data model into the Metadata Workbench
Replies: 3
Views: 2798

They should have come along with it. Did you try using the "Export to Metadata Server" directly from IDA?

Ernie
by eostic
Fri May 27, 2011 11:34 am
Forum:
Topic: Connectivity to Business Objects/Universe
Replies: 2
Views: 2027

Assuming that the bridge in the Import/Export Manager imports your objects correctly (look at the documentation in the bridge for specific pre-requisites, etc.), you should see, in the WB, a new set of "Host" information (host/database/schema/table/columns) as well as BI model information ...
by eostic
Fri May 27, 2011 11:30 am
Forum:
Topic: Fetching Meta data without setting connectivity at Server
Replies: 1
Views: 1322

You can get ODBC via the Import/Export Manager at the client, as well as metadata from things like ERwin.....however, I would encourage you to get the Server connections working, either for ODBC, or more preferably, for native APIs....and then use the "Connector Import Wizard" (as opposed ...
by eostic
Thu May 26, 2011 12:30 pm
Forum: IBM QualityStage
Topic: Design for real time reference data update.
Replies: 9
Views: 3766

What was meant by that is "use your creative juices"....... If you have your own methods of providing in memory tables and lookups, and are an expert in using Java or C++ and building/manipulating and managing such structures, go for it. DataStage is very extensible. But the code will prob...
by eostic
Thu May 26, 2011 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Entire text file as a single Message to MQ
Replies: 3
Views: 1495

Not easily. The sequential stage cannot consistently pick up a "whole" file.....if it has variable length text with stray embedded CRLFs anywhere, it is likely to fail......and maybe not in test, but at some future time....

Ernie
by eostic
Wed May 25, 2011 5:01 pm
Forum:
Topic: MetadataWorkbenchDevelopmentGuildlines,Standards & Namin
Replies: 1
Views: 1124

Check out the lineage entries at my blog below. I have lots more in my head and in posts throughout the forum here, or ask other more pointed questions and I'll share what I can think of. There is a team working on a redbook for WB and metadata guidelines too, but that effort is still in the oven. E...
by eostic
Wed May 25, 2011 5:00 pm
Forum:
Topic: How To Import Sql server (DTS) packagesIntoMetadataWorkbench
Replies: 1
Views: 1033

There's nothing automatic, but take a look at "Extension Mapping Documents".....this is a very good way to get data lineage for any kind of process that you may want to represent..... you can make it as detailed as you need to, with column info and transformation rules, or just keep it hig...
by eostic
Wed May 25, 2011 4:55 pm
Forum:
Topic: Importing a physical data model into the Metadata Workbench
Replies: 3
Views: 2798

hmm. A couple of thoughts and questions about the steps.... a) I believe that IDA 7.5.3 and above will import COBOL to create a Logical Model.....did you import "that" directly from IDA, or did you first create a formal physical model? If you imported the logical, then it will have come in...
by eostic
Wed May 25, 2011 4:51 pm
Forum: IBM QualityStage
Topic: Design for real time reference data update.
Replies: 9
Views: 3766

Sparse lookup is probably the only easy way (assuming you aren't crafting your own in-memory objects using Java or some other technology)....so that each time you commit a new entry to the database, it will be found by your lookup stage... of course, that means you have to return to the database for...