Search found 53125 matches

by ray.wurlod
Sat Apr 14, 2007 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Japaneese data by ETL
Replies: 1
Views: 813

You must have NLS installed and enabled. You must be aware of how the Japanese characters are encoded - there are at least fifteen different ways. This map (for example one of the SHIFT-JIS maps) must have been loaded - use the Administrator client to get maps loaded. Then you set this map on the st...
by ray.wurlod
Sat Apr 14, 2007 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of Columns in an o/p Link
Replies: 4
Views: 1157

The Columns grid has numbers in every stage!
by ray.wurlod
Sat Apr 14, 2007 1:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Error selecting from log file RT_LOG862"
Replies: 9
Views: 6511

Ah. So we await Mr Morris's return.

Can't open dictionary suggests that job number 862 has been incompletely deleted. If this is not the case, please post the results of the following command issued from TCL:

Code: Select all

LIST.ITEM VOC 'RT_LOG862'
by ray.wurlod
Sat Apr 14, 2007 1:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI 9i stage - problem with decimal column
Replies: 4
Views: 1502

T30FILE setting is irrelevant; it relates only to hashed files.

What are the data types of RCT.TRX_NUMBER and RC.LAST_UPDATE_DATE in the Oracle table, as reported by DESCRIBE ?

Is this really a Cartesian product, or have you not posted the WHERE clause that joins the two tables?
by ray.wurlod
Fri Apr 13, 2007 4:13 pm
Forum: General
Topic: SQL LOADER (sqlldr)
Replies: 7
Views: 3092

sqlldr is an Oracle utility. You set up the Oracle utility on the DataStage server machine, but not "within" DataStage.

DataStage can invoke sqlldr through its command line or via the ORAOCIBL or ORABULK stage types.
by ray.wurlod
Fri Apr 13, 2007 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Elegant decimal data conversion?
Replies: 1
Views: 1072

Welcome aboard. :D The answer is no. Decimal always reserves space in the string for the leading sign and the decimal placeholder character. The most efficient algorithm for removing them is conversion to string, then using Convert() to remove the space and dot. Just make sure you're not doing this ...
by ray.wurlod
Fri Apr 13, 2007 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in px
Replies: 12
Views: 7360

Transport blocks apply only for fixed-length records and only between player processes. I guess by the time you're in a virtual Data Set you effectively do have fixed-length records, because bounded VarChar is stored as prefix bytes and full allocation of character space.
by ray.wurlod
Fri Apr 13, 2007 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retrieving data from AS400 DB2 tables into DSEE
Replies: 1
Views: 909

DB2 Connect is DB2 client software, not part of DataStage. The line in dsenv will depend on where you have installed DB2 Connect; essentially you need its bin directory in your PATH and its lib32 directory in your LD_LIBRARY_PATH (though after $APT_ORCHHOME/lib). Questions 4 through 7 relate to sett...
by ray.wurlod
Fri Apr 13, 2007 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating abends (Failures) from Datastage canvas in DS 390
Replies: 3
Views: 1813

Short of modifying the JCL template, I don't believe so.
by ray.wurlod
Fri Apr 13, 2007 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using routines in parallel job
Replies: 7
Views: 2003

Server job Transformer uses server routines.
Parallel job Transformer uses parallel routines.

Create parallel routines and they will appear in the Expression Editor.
by ray.wurlod
Fri Apr 13, 2007 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Process empty value problem.
Replies: 9
Views: 2111

Padding of CHAR fielsd uses the character specified by APT_STRING_PADCHAR, which is \000 by default.
by ray.wurlod
Fri Apr 13, 2007 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling job
Replies: 7
Views: 2485

Stop overloading the server machine.
by ray.wurlod
Fri Apr 13, 2007 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: abnormal termination detected
Replies: 4
Views: 1097

When it occurs, reset the job in Director then read (and post) the "from previous run" message. Also read (and post) the detail of the error message itself.
by ray.wurlod
Fri Apr 13, 2007 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Memory consumption by DataStage for processing
Replies: 1
Views: 901

DataStage will request what memory it needs. In general data are not held in memory, but streamed through the job. Exceptions include blocking stages, such as the Aggregator and Sort stages. If the requested (virtual) memory can not all be allocated, then you are likely to receive a "heap allocation...
by ray.wurlod
Fri Apr 13, 2007 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Leap year
Replies: 11
Views: 4545

Just spell out the rule in English. A year is a leap year if the year number is divisible by 4 except if (the year number is divisible by 100 but not by 400). Hence 2000 was a leap year but 1900 was not. The Mod() function is the easiest way to determine exact divisibility; it returns 0 in this case...