Search found 53125 matches

by ray.wurlod
Wed Jun 15, 2005 8:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DRS stage and Oracle Unique key violations
Replies: 11
Views: 5443

If you ever get a change to view the native source code, you would be amazed at how close to the ODBC API some of them are! :wink:

Though not all.
by ray.wurlod
Wed Jun 15, 2005 8:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Disable NLS
Replies: 6
Views: 1748

Remove NLS is not possible.

Remove NLS during upgrade is not possible.

Uninstall 7.1 and clean install 7.5 without NLS is definitely do-able. Then import the projects from the exports that you always take (right?) before upgrading anything.
by ray.wurlod
Wed Jun 15, 2005 8:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DRS stage and Oracle Unique key violations
Replies: 11
Views: 5443

ODBC and OCI are comparable at low-complexity SELECT. They are greatly different at INSERT and UPDATE.
by ray.wurlod
Wed Jun 15, 2005 8:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mimic KeyMgtGetNextValueConcurrent routine
Replies: 8
Views: 2234

The ultimate reference is BCI Reference Guide. This mimics the ODBC API. You will need a licensed ODBC driver to connect from DataStage routine.
by ray.wurlod
Wed Jun 15, 2005 8:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improving the performance of OCI 9i Stage
Replies: 6
Views: 1255

I just had a report from a customer as follows. Job design is

Code: Select all

OCI9 ----->  HashedFile
There are 34756 rows to move. Array size is set to 1000. The job loaded 34000 rows, and apparently discarded the incomplete array.
Further investigation is required.
by ray.wurlod
Wed Jun 15, 2005 8:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to measure job complexity?
Replies: 30
Views: 13226

Complexity serks. :lol:
by ray.wurlod
Wed Jun 15, 2005 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Disable NLS
Replies: 6
Views: 1748

Set NLSMODE to 0 in uvconfig, regenerate and restart DataStage.

Why not install 7.5 without NLS entirely?
by ray.wurlod
Wed Jun 15, 2005 8:40 pm
Forum: IBM QualityStage
Topic: House number gets lost during the UNDUP process
Replies: 5
Views: 2805

That will be very handy to know, until "they" fix it. Hopefully that will be soon. :o
by ray.wurlod
Wed Jun 15, 2005 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LongVarChar source and DS job fails to recognize it!!!
Replies: 15
Views: 5510

Try 4000. If that gives truncation errors, double it until the errors go away.
by ray.wurlod
Wed Jun 15, 2005 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to append the data????
Replies: 4
Views: 1147

Process them in separate jobs, run consecutively, with the writing rule set to Append.
by ray.wurlod
Wed Jun 15, 2005 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Null counts in aggregator stage
Replies: 3
Views: 1403

Create a stage variable, say svNullCount. Initialize it to 0. Derive it as If IsNull(InLink.ColumnName) Then svNullCount+1 Else svNullCount Because Boolean functions return 1 for true and 0 for false, a simpler - and more efficient - derivation is svNullCount + IsNull(InLink.ColumnName&#...
by ray.wurlod
Wed Jun 15, 2005 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LongVarChar source and DS job fails to recognize it!!!
Replies: 15
Views: 5510

Oracle is complaining that you're specifying LongVarChar(0), since "" is treated by DataStage as 0 in a numeric context.

What was the maximum length (precision) when you imported the table definition from Oracle? Use that value.
by ray.wurlod
Wed Jun 15, 2005 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading excel file
Replies: 8
Views: 2766

If you read the ODBC specification for the Excel ODBC driver you will see that it requires that the worksheet has column headings and is otherwise in tabular format. That is, there is no scope for header and trailer rows. Can you pre-process the worksheet (perhaps into a worksheet with a standard na...
by ray.wurlod
Wed Jun 15, 2005 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reporting Asistant in Manager problem
Replies: 5
Views: 1194

Reporting Assitant is deprecated (= no more development or fixes). It doesn't handle job sequences. It doesn't handle shared containers properly. It doesn't handle the DRS stage properly (which generates errors something like what you report). "They" say that the replacement tool of choice is MetaSt...
by ray.wurlod
Wed Jun 15, 2005 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Option for Job to "Fail" if the "Before Job-R
Replies: 7
Views: 1437

Setting the ErrorCode argument to a non-zero value to stop the job is actually documented in the generated before-after subroutine code. :roll: