Search found 53125 matches

by ray.wurlod
Tue Sep 27, 2005 7:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Performance Tuning - Bulk / Direct / OCI / Updates
Replies: 14
Views: 28840

Tune the control file. Don't use the Bulk Loader stage type at all - use a Sequential File stage and only create the DAT file(s). Add hints to the control file, for example for parallel load. Add appropriate buffer sizes to each column, rather than use the default 256-byte buffers. I have reduced a ...
by ray.wurlod
Tue Sep 27, 2005 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: writing variable length records
Replies: 2
Views: 1062

Change the data type for output from Char(2000) to VarChar(2000) and apply a TrimB() function.
by ray.wurlod
Tue Sep 27, 2005 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max Value in date column
Replies: 10
Views: 4662

What stage type are you using to apply Max() ? Given that the field is string[10], you should be able to use an Aggregator stage.
by ray.wurlod
Tue Sep 27, 2005 4:30 pm
Forum:
Topic: MetaStage Directory on SQL Server 2000 DB Configuration
Replies: 2
Views: 1732

I've also had that happen on DB2. The reported symptom also gives you the fix; you need more room for transaction logging.
by ray.wurlod
Tue Sep 27, 2005 1:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting first occurance of number from String
Replies: 14
Views: 5641

If you're going to allow BASIC Transformer stage, then the ideal function is

Code: Select all

MatchField(InLink.TheString, "0A0N0X0N0X", 2)
by ray.wurlod
Tue Sep 27, 2005 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: recoverability from failures
Replies: 5
Views: 1171

The issues log should be busiest in the "dev -> test -> back to dev" cycle. That way you should get ETL as bulletproof as possible into the production environment. Of course, whoever does the testing needs to be sufficiently astute, cynical and painstaking. Handling of failures in the ETL itself - f...
by ray.wurlod
Tue Sep 27, 2005 1:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema file
Replies: 7
Views: 2137

Open the table definition in Manager.
Select the Layout tab.
Choose the Parallel option.
Copy the schema, paste into any text editor.
Save schema file.
by ray.wurlod
Mon Sep 26, 2005 8:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting first occurance of number from String
Replies: 14
Views: 5641

Does that work in parallel jobs?
by ray.wurlod
Mon Sep 26, 2005 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting first occurance of number from String
Replies: 14
Views: 5641

Oconv() is not available in parallel jobs, except in BASIC Transformer stage.
by ray.wurlod
Sun Sep 25, 2005 11:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use oracle hints in datastage
Replies: 10
Views: 5513

I shun the expression builder, so won't have seen this. I've certainly used the /*+ APPEND */ hint to good effect here and there (but still prefer sqlldr).
by ray.wurlod
Sun Sep 25, 2005 10:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row locking problem in Hash File
Replies: 9
Views: 3556

This is actually quite a complex topic. The sizes of the lock tables are, as you guess, configurable. There are, however, a number of these tables; file locks, group latches, readu locks, readL locks, waiters. The best reference is Administering UniVerse which you can download from IBM's web site
by ray.wurlod
Sun Sep 25, 2005 10:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CAN WE PASS INTEGER COLUMN TO DECIMAL COLUMN IN TRANSFORMATI
Replies: 6
Views: 1512

What exactly do you mean be an "integered" column? Integer data types can automatically be promoted to decimal, provided the decimal data type has sufficient precision. For example, the largest legal (four byte) integer has ten digits; therefore, to be able to guarantee that the decimal column can a...
by ray.wurlod
Sun Sep 25, 2005 10:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DO JOB SEQUENCES COULD BE RUN THROUGH DIRECTOR ORNEEDS SCRIP
Replies: 4
Views: 1530

The thing to remember here is that a job sequence is just a special case of a server job.

The only thing special about it is that it consists of (read-only) job control code generated by precompiling its design.
by ray.wurlod
Sun Sep 25, 2005 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS version control process
Replies: 15
Views: 3609

And why jobs are added int DS Designer ? Can I block this ? You should only see these in Designer if you open the VERSION project in Designer, which is not what you should be doing. In regular projects the only indication that a component has been versioned is that it has some extra text in its lon...
by ray.wurlod
Sun Sep 25, 2005 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: about lookup stage error
Replies: 6
Views: 1878

With the lookup stage you have four alternatives about how you want to handle the situation when the lookup fails. Click on the tool in the toolbar that seems to have a small piece of chain on it. This gives you access to the rules for "condition to perform lookup not met" and "lookup failed". Each ...