Search found 53125 matches
- 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...
- 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
- 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:
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'- 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
- Fri Apr 13, 2007 4:13 pm
- Forum: General
- Topic: SQL LOADER (sqlldr)
- Replies: 7
- Views: 3092
- 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 ...
- 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
- 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...
- 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
- 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
- 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
- Fri Apr 13, 2007 3:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error calling job
- Replies: 7
- Views: 2485
- Fri Apr 13, 2007 3:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: abnormal termination detected
- Replies: 4
- Views: 1097
- 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...
- 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...