Search found 53125 matches

by ray.wurlod
Mon Dec 18, 2006 9:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding rowsplitter
Replies: 3
Views: 730

It would be more efficient not to try to undo the join, but to select the original tables from the original tables. -----> Transformer -----> ODBC2 (original table A) ODBC1 -----> Transformer -----> ODBC3 (original table B) -----> Transformer -----> ODBC4 (join of tables A and B&...
by ray.wurlod
Mon Dec 18, 2006 8:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding sequencer
Replies: 4
Views: 929

Go to the job properties window of your job sequence. On the General tab there are four check boxes. One of these is to log an event (in the job log of the job sequence) whenever a job is executed. Check that box and recompile the job sequence.
by ray.wurlod
Mon Dec 18, 2006 8:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decide what job to run depending on a string in file
Replies: 3
Views: 1015

Make use of the fact that the exit status of grep is 0 if the string is found and non-zero (typically 1) otherwise.
by ray.wurlod
Mon Dec 18, 2006 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status 'Running' forever.
Replies: 10
Views: 3937

Search would have answered that question. In short, the status that Director reports is from the RT_STATUSnnn table associated with the job. If there is a network problem or the job has aborted, the job may not get the chance to update its status table. That's the main reason the "Clear status file...
by ray.wurlod
Mon Dec 18, 2006 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Datetime to Date
Replies: 9
Views: 3773

That's because the DB2 stage (idiosyncratically) wants an internal format date. You achieve this with an Iconv() function.

Code: Select all

Iconv(Field(InLink.TheTimestamp, " ", 1, 1), "DYMD")
by ray.wurlod
Mon Dec 18, 2006 3:32 pm
Forum: IBM QualityStage
Topic: Match.rpt
Replies: 4
Views: 1586

In your MATCH job, did you specify a different output file name? Did you request that the report be generated (this is a check box, from memory)?
by ray.wurlod
Mon Dec 18, 2006 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in parallel job with source as DB2 database
Replies: 9
Views: 2932

The message says not to use the setOutputFieldAsString() function unless the target data type is string (that is, Char or VarChar).
by ray.wurlod
Mon Dec 18, 2006 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: special characters
Replies: 3
Views: 1366

NLS means National Language Support; it must be selected when DataStage server (engine) is installed. It gives you the ability to map from and to different character sets using a "character map" (or "code page"), and to represent dates/times, currency, numeric data, etc., according to local conventi...
by ray.wurlod
Mon Dec 18, 2006 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type "string[5]" t
Replies: 3
Views: 2880

Within the Lookup stage, what is the data type of COLUMN_NM_1 on each link on which it appears? The message suggests that it is Char(2) somewhere.
by ray.wurlod
Mon Dec 18, 2006 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Linux 8 way maxs all procs - box to become unresponsive
Replies: 4
Views: 1099

How closely have you verified that "the only thing changed is the hardware"? Please monitor both systems, running the same jobs, to determine what DataStage processes are running and what resources these are consuming. Also report all other processes, particularly any associated with database server...
by ray.wurlod
Mon Dec 18, 2006 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cleaning the Scratch space
Replies: 9
Views: 9354

1. Request additional file systems (NOT additional directories in the same file system) from your "higher authorities". Ideally, use a separate file system for each processing node, to maximize I/O throughput. Then, on an SMP environment, institute a configuration that "gives all nodes all the disk"...
by ray.wurlod
Mon Dec 18, 2006 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding sort stage
Replies: 7
Views: 2345

Post the full error message. This is not the kind of message I would expect to see from a Sort stage. Examine the error message fully to determine which stage generates it.
by ray.wurlod
Mon Dec 18, 2006 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Datetime to Date
Replies: 9
Views: 3773

There are Transforms for extracting the date portion of a Timestamp, or you can use

Code: Select all

Field(InLink.TheTimestamp, " ", 1, 1)
or

Code: Select all

Left(InLink.TheTimestamp, 10)
etc.
by ray.wurlod
Mon Dec 18, 2006 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding sort stage
Replies: 7
Views: 2345

It sorts ROWS.
The sort key only serves to specify the basis of how to sort the rows.

This is true of every sorting mechanism, not just DataStage's.
by ray.wurlod
Mon Dec 18, 2006 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage daylight time saving
Replies: 6
Views: 3582

The rules are different in other countries, particularly in the southern hemisphere.

But DataStage still picks up its time from the operating system, even if water and weather do spiral the other way.