Search found 42189 matches

by chulett
Tue Dec 09, 2008 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML File read follow up
Replies: 6
Views: 1628

No. While reading the sample file directly can be "ok" you really need to get your hands on an ".xsd" which is the "schema definition" file. Any chance of requsting that from whomever is creating the file?
by chulett
Tue Dec 09, 2008 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Compilation Error
Replies: 3
Views: 1562

Re: Transformer Compilation Error

This is the error you need to correct: ##E TCOS 000003 18:35:36(001) <main_program> Syntax error: Error in "transform" operator: Error in operator arg: In field "ERROR_RECYCLE_COUNT": Parsing parameters "0,10" for schema type "decimal": Precision must be > 0 a...
by chulett
Tue Dec 09, 2008 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in a simple job
Replies: 6
Views: 1327

All Ray asked was "OK, what has changed?" Obviously something has and unfortunately you are the one that's going to need to chase down the culprit.
by chulett
Tue Dec 09, 2008 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML File read warning
Replies: 2
Views: 1080

Re: XML File read warning

It can't open the input file. Message:The primary document entity could not be opened. Id=C:\IBM\InformationServer\Server\Projects\EDW///Svkcdisd01/Projects/EDW/Outputs/sample.xml I'm assuming that's not the full path to the file you want to parse. Any idea how the "EDW" path is getting ad...
by chulett
Tue Dec 09, 2008 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML File read follow up
Replies: 6
Views: 1628

First question, in my mind, would be to confirm how your XPath Expressions were generated. Automatically from an xsd?
by chulett
Tue Dec 09, 2008 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write code to extract record from multiple tables to Files.
Replies: 7
Views: 2760

There really isn't the concept of "select *" in Server since everything is metadata driven. So the typical answer would be one job per table.

How many tables are "multiple"?
by chulett
Tue Dec 09, 2008 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bulk Load Job failing
Replies: 9
Views: 2686

Apparently needed / created / used by the stage and (I assume) the user running the job didn't have permissions to delete it, so you needed to handle it manually.
by chulett
Tue Dec 09, 2008 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel to Server Best Practices
Replies: 3
Views: 1181

I prefer them as well, for whatever that is worth, but tend to use a mixture of all three depending on the requirements of the job. But primarily - sequential files. :wink:
by chulett
Tue Dec 09, 2008 8:18 am
Forum: General
Topic: Passing Prj Parameters to Job Parameters
Replies: 5
Views: 1743

For that you'd need a level of job control (like a Sequence job) that could pass those values to existing parameters. Otherwise you will (AFAIK) need to change the jobs to include the Project parameters, set them to $PROJDEF and then update the Oracle stages. Pretty cookbook change and not that larg...
by chulett
Tue Dec 09, 2008 8:11 am
Forum: IBM QualityStage
Topic: Starting QSRT server
Replies: 1
Views: 1088

by chulett
Mon Dec 08, 2008 6:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate Job Statistics as html report
Replies: 6
Views: 4246

You should be using dsdesign.exe not dsjob.exe and you need to double-check that you are passing it enough parameters. Search the forums here for "dsdesign" to see examples of how it is called.
by chulett
Mon Dec 08, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting information into DS_AUDIT
Replies: 9
Views: 2674

As noted, use standard SQL statements to join tables just like you would in any other database.
by chulett
Mon Dec 08, 2008 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: send dsjob output to logfile
Replies: 7
Views: 6385

Or that. :wink:
by chulett
Mon Dec 08, 2008 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting information into DS_AUDIT
Replies: 9
Views: 2674

Re: Inserting information into DS_AUDIT

etlbets wrote:If I could join DS_AUDIT with another table in Universe that would work as well.
Well, that is certainly possible. Join tables there just like you would anywhere else, use standard SQL syntax rather than the UniVerse Retrieve syntax that I assume that "sort" is part of.
by chulett
Mon Dec 08, 2008 10:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML File Reads
Replies: 3
Views: 1084

Also helps a great deal if you have an xsd for the xml file and have imported the metadata from it, rather than from the xml directly or typing the XPath Expressions by hand. FYI.