Search found 53125 matches

by ray.wurlod
Thu Aug 27, 2009 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Where are Oracle bulk loader logs?
Replies: 6
Views: 1585

Re: Oracle bulk loader error

mekrreddy wrote:...load into an ORCLE table ...
The database from Lord of the Rings. _ :lol:
by ray.wurlod
Thu Aug 27, 2009 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config File
Replies: 9
Views: 2889

The fastname must be a genuine node name, ideally the one on the fastest connection to that machine. Do you really have a node called "a"?
by ray.wurlod
Thu Aug 27, 2009 4:22 pm
Forum: General
Topic: Need help setting up UVSH
Replies: 10
Views: 2548

LIST.READU (list_readu) is hard coded for 80 column output. The device width does not affect that. You can use LIST.READU INTERNAL to capture the data into a dynamic array and DataStage BASIC routine to format it however you like. In version 8 you probably really need to interrogate the XMETALOCKINF...
by ray.wurlod
Thu Aug 27, 2009 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Table Definitions Command Line
Replies: 3
Views: 2028

Not really.

Some will suggest some convoluted set of commands such as

Code: Select all

DSHOME=`cat /.dshome` ; export DSHOME
. $DSHOME/dsenv
cd ProjectDir
dssh "SELECT * FROM DS_METADATA;"
but I would not be one of them.
by ray.wurlod
Wed Aug 26, 2009 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Automate Datastage Exports scripts - flowchart
Replies: 8
Views: 4307

You can answer this question yourself. Ask yourself what is stored in the XMETA database.
by ray.wurlod
Wed Aug 26, 2009 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identifying Long Running Jobs
Replies: 8
Views: 3198

You use Director for this. Status is Running (you can filter this) and sort by start time.
by ray.wurlod
Wed Aug 26, 2009 3:27 pm
Forum: General
Topic: Server Job is disabled
Replies: 6
Views: 1299

Welcome aboard.

This is one that only your official support provider can resolve. No-one here has a patch for 8.2 - as far as I'm aware that version has not yet been released (but I've been wrong about such things before). Check whether you have been sent a new license file that omits server jobs.
by ray.wurlod
Wed Aug 26, 2009 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: different output values
Replies: 16
Views: 4793

Excel has probably applied a "numeric" format. Use Format Cells to change this.
by ray.wurlod
Wed Aug 26, 2009 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How does DataStage store Annotations?
Replies: 17
Views: 5496

"Performance" data are stored in the RT_STATUSnnn hashed file for the job. Annotations are stored in DS_JOBOBJECTS and have repository IDs of the form VnAm (where n and m are integers). Column definitions imported as table definitions or saved from jobs are stored in DS_METADATA hashed fil...
by ray.wurlod
Wed Aug 26, 2009 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL0206N & SQLSTATE=42703
Replies: 2
Views: 3170

My guess is that you have used this as a table name and no such-named table exists in the schema that you are using (possibly a default schema).
by ray.wurlod
Tue Aug 25, 2009 10:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_LUTCreateOp Warning(Preserve partition flag "Clear)
Replies: 6
Views: 6169

Check again that you have done this, particularly on the inputs to the Lookup stage. If you have, check that you have subsequently re-compiled the job.
by ray.wurlod
Tue Aug 25, 2009 10:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading into Multiple Spreadsheets in Excel
Replies: 7
Views: 2580

Not really. What I wrote is clear.

If you're asking about the "certain requirements" these are documented in the ODBC API manual (from Microsoft) - in essence the worksheet must be in strict columnar form and have ODBC-legal column headings.
by ray.wurlod
Tue Aug 25, 2009 4:05 pm
Forum: IBM QualityStage
Topic: Reg Before SQl Statement
Replies: 4
Views: 1607

Could be... we just don't know.
by ray.wurlod
Tue Aug 25, 2009 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_LUTCreateOp Warning(Preserve partition flag "Clear)
Replies: 6
Views: 6169

So HAVE you set the Preserve Partitioning flag to "Clear" in the Lookup stage? In the stage upstream of the Lookup stage on each input?
by ray.wurlod
Tue Aug 25, 2009 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error while calling a job from Job Control Code
Replies: 6
Views: 2480

You can not use an environment variable name directly as the third argument of DSSetParam(). DataStage BASIC does not recognize environment variables.