Search found 53125 matches

by ray.wurlod
Tue Nov 14, 2006 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input/output error in Sequential File stage
Replies: 11
Views: 3020

Could it be that you only had read permissions to the soft mount? Or that the mount was not even there when the failures occurred?
by ray.wurlod
Tue Nov 14, 2006 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write messages to log
Replies: 3
Views: 1216

The command dsjob -log perhaps invoked from an after-job subroutine is one way, or you can continue to invoke the Utility functions via Routine activities in job sequences. If you want to write your own, the DSCAPI is documented in the Parallel Job Advanced Developer's Guide - in particular the DSLo...
by ray.wurlod
Mon Nov 13, 2006 10:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating Records in Table
Replies: 13
Views: 2297

Another link into the database stage, with the rule "update existing rows only".
by ray.wurlod
Mon Nov 13, 2006 10:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log Info
Replies: 6
Views: 2058

There are NO log files in DataStage. Logged events are stored in database tables (hashed files) called RT_LOGnnn, where nnn is the job number. You can archive the events from them by a number of techniques, all of which can be found via a Search of the forum.
by ray.wurlod
Mon Nov 13, 2006 10:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: invalid job handle
Replies: 2
Views: 2002

Step 1: read the entire message. Which job generated the invalid job handle?

Step 2: check that job in Status view in Director. Discover that is it not in a runnable state. Correct that.

Step 3: fix the job sequence so that the rule is "reset if required, then run".
by ray.wurlod
Mon Nov 13, 2006 9:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage
Replies: 2
Views: 1141

Somewhere in your Columns definitions, somewhere in the job (not necessarily in the Oracle Enterprise stage) you have a VarChar data type with no (=zero) precision. This is illegal.

string[max=n] is the Orchestrate Framework's way of representing VarChar(n) in a schema.
by ray.wurlod
Mon Nov 13, 2006 9:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Oracle MDSYS.SDO_GEOMETRY data type in DataStage
Replies: 2
Views: 1826

OETL (object ETL) is not a three-letter acronym, and would therefore be frowned upon by IBM, the TLA company. :lol:

SETL (spatial ETL) is too close an acronym to SETI, a project that is consuming humungous amounts of CPU. :shock:
by ray.wurlod
Mon Nov 13, 2006 5:35 pm
Forum: Site/Forum
Topic: Cute Marketing
Replies: 0
Views: 1748

Cute Marketing

This (from today's Home page) has to be preserved for posterity.


There are NO MORE guaranteed Charter Memberships left!

Hurry! Get your Premium Membership before we realize what happened!
When we do, the discount ends and the rate returns to US$99 per year
!
by ray.wurlod
Mon Nov 13, 2006 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to include Member in an SQL query for DB2 on AS/400
Replies: 7
Views: 1671

Have you imported the table definitions for these tables? If so, how are these column names represented in the table definition? The short answer is that, whatever this is, that's the name that you need to use.
by ray.wurlod
Mon Nov 13, 2006 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to include Member in an SQL query for DB2 on AS/400
Replies: 7
Views: 1671

To access data in DB2 tables on mainframe or AS/400 systems you need to use the DB2/UDB API stage and communicate via DB2-Connect.
by ray.wurlod
Mon Nov 13, 2006 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PIC S9(9)V99 to Decimal (11,2) Convertion problem
Replies: 6
Views: 3582

DataTypePicS9 handles zoned right signed decimal numbers but ignores the scale. The easiest approach is to divide the result by 100.

Code: Select all

DataTypePicS9(InLink.TheColumn) / 100
by ray.wurlod
Mon Nov 13, 2006 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of Chinese characters (sap ext and load into ora)
Replies: 5
Views: 1795

It's a little more complex than explained. A continuous process captures changed rows in SAP into a text file. A new file is opened every hour. The SAP records in this file may contain Chinese characters as well as English. DataStage initiates (via BAPI) an ABAP process that consolidates the hourly ...
by ray.wurlod
Mon Nov 13, 2006 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error While rejecting a row from lookup
Replies: 2
Views: 1074

There is no field called NUM in the record schema but you are making some reference to a field of that name in your job design. You need to find it and fix it.
by ray.wurlod
Mon Nov 13, 2006 2:44 pm
Forum: General
Topic: Datastage will not start for certain values of PS1
Replies: 3
Views: 2514

That is mega-weird!!! I trust you've reported it as a likely bug. I am not aware of any use the DataStage startup makes of the PS1 environment variable (nor can I conceive of any!).
by ray.wurlod
Mon Nov 13, 2006 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Profile all Jobs end-to-end
Replies: 16
Views: 10936

For Windows replace all /dev/null with .\NUL - there is a NUL file in every folder.