Search found 53125 matches

by ray.wurlod
Sat Mar 17, 2007 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in performance
Replies: 2
Views: 913

Take the IBM beginner's class (DataStage Essentials, code DX334). Among other things it takes you through this technique.
by ray.wurlod
Sat Mar 17, 2007 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS READ FIXEDWIDTH
Replies: 22
Views: 9978

"Job aborted after 50 warnings" appears to rule out View Data as the culprit.
by ray.wurlod
Fri Mar 16, 2007 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS READ FIXEDWIDTH
Replies: 22
Views: 9978

That the error is being generated by nls_read_fixedwidth() informs us that the error is occurring during import. Add a reject-handling link to the Sequential File stage that is reading the file to capture any row that fails to satisfy the main output link's metadata, and direct those rows to - for ...
by ray.wurlod
Fri Mar 16, 2007 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datawarehousing
Replies: 4
Views: 1246

Data are never "kept" within DataStage, so there's no limit on how much data a stage can handle. Data just flow through DataStage. A well-considered design will include one or two staging areas, for the purposes of restart/recovery, but theoretically (and as advised by DataStage sales folks over the...
by ray.wurlod
Fri Mar 16, 2007 6:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Size limitation on DataSets & Lookup File Sets
Replies: 5
Views: 1322

20 Terabytes. Per partition. (I think there's a limit of 1 million partitions, too, but not totally certain on that one.)
by ray.wurlod
Fri Mar 16, 2007 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration 7.5x2 to 8.0
Replies: 15
Views: 4088

One of the presenters at IOD 2006 also mentioned that your client machine needs 2GB minimum memory. How much is needed on the server side depends on how you distribute the various server components. For example, you can have the Application Server, the Domain Server and the database server all on on...
by ray.wurlod
Fri Mar 16, 2007 6:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove additional zeros in a record using Transformer
Replies: 12
Views: 10678

:idea: With a Modify stage it might work even faster. You will still need a string_trim function, however. Refer to Orchestrate Operators guide for more information, as they seem to have left this function out of the Parallel Job Developer's Guide. This document may also prove useful.
by ray.wurlod
Fri Mar 16, 2007 6:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS READ FIXEDWIDTH
Replies: 22
Views: 9978

That the error is being generated by nls_read_fixedwidth() informs us that the error is occurring during import. Add a reject-handling link to the Sequential File stage that is reading the file to capture any row that fails to satisfy the main output link's metadata, and direct those rows to - for e...
by ray.wurlod
Fri Mar 16, 2007 6:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding oci load and sql loader
Replies: 3
Views: 1098

Interview question?
by ray.wurlod
Fri Mar 16, 2007 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading the files
Replies: 15
Views: 3865

The file name can be passed into the job as a parameter - after all, it's going to read that file. Therefore, the filename column is derived as the value of this job parameter. The file name parameter is given its value in the job sequence via the $Counter activity variable from the Start Loop activ...
by ray.wurlod
Fri Mar 16, 2007 5:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC.INI. ---odbc error
Replies: 2
Views: 1335

It follows that you need to configure your Oracle client software (files such as tnsnames.ora, in/below the $ORACLE_HOME directory). Your Oracle DBA ought to be able to assist. A running DataStage job is, as far as Oracle is concerned, just another client application.
by ray.wurlod
Fri Mar 16, 2007 5:57 pm
Forum: General
Topic: string replacement in mainframe job
Replies: 8
Views: 1992

There is no STR function, alas. Certainly you could do something like RPAD('', 6, '*') to generate six asterisk characters. But I don't think the second argument can be an expression. That is, you could not use RPAD('', (CHARACTER_LENGTH(InLink.ColName)), '*') Maybe that will give you some ideas, ho...
by ray.wurlod
Fri Mar 16, 2007 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Size limitation on DataSets & Lookup File Sets
Replies: 5
Views: 1322

20TB x #partitions (approximately).

You're much more likely to run out of disk space than to hit this limit.

9 million records poses no problem at all, even if they're very wide records.
by ray.wurlod
Fri Mar 16, 2007 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runing cobol programs under control of datastage
Replies: 5
Views: 2022

Is this mainframe edition of DataStage?