Search found 53125 matches

by ray.wurlod
Wed Dec 22, 2010 2:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Value for a column in modify stage
Replies: 5
Views: 2778

Assignment of value is not possible in a Modify stage. You can do it in a Column Generator stage.
by ray.wurlod
Wed Dec 22, 2010 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Estimate Lookup Size
Replies: 3
Views: 1550

How much memory do you have? How much scratchdisk in the nodes on which the Lookup stage operates? How many other stages are there in the job? How long is a piece of string? (Try it and see.)
by ray.wurlod
Wed Dec 22, 2010 2:24 am
Forum: General
Topic: How to Find DSHOME ?
Replies: 5
Views: 1920

Code: Select all

export DSHOME=`cat /.dshome`
by ray.wurlod
Wed Dec 22, 2010 2:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Truncation in ODBC Enterprise stage.
Replies: 5
Views: 2290

Then you're going to have to find out where the truncation is occurring. For example, is there a SUBSTRINGS function in the extraction SQL? Is there some point in the job where the field is a VarChar(26)? DataStage will NOT exhibit this behaviour unless it is programmed to do so.
by ray.wurlod
Wed Dec 22, 2010 2:20 am
Forum: General
Topic: find and replace contents of the same file
Replies: 3
Views: 1328

Resist stupid requirements! Write to a new file then delete the old and rename the new. Or rename the old, process it, and delete it when done.
by ray.wurlod
Wed Dec 22, 2010 2:18 am
Forum: General
Topic: Business Glossary on the WWW
Replies: 3
Views: 1751

You could certainly adapt that or the BGA widget using the REST API.
by ray.wurlod
Tue Dec 21, 2010 9:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Estimate Lookup Size
Replies: 3
Views: 1550

Yes. The size of each data type is documented (from memory in Chapter 2 of the Parallel Job Developer's Guide). Add these together for all the columns in the row that you're processing, then multiply by the number of rows in the reference data set.
by ray.wurlod
Tue Dec 21, 2010 9:39 pm
Forum: General
Topic: DataStage Routines - What Are they?
Replies: 4
Views: 5590

A DataStage parallel routine is an external function, written in C++, to perform any task that you like but which, for example, it is too tricky to achieve using regular Transformer stage expressions. One example is the ability to replace one substring with another anywhere in a main string, the so-...
by ray.wurlod
Tue Dec 21, 2010 9:36 pm
Forum: General
Topic: Shared Containers Info
Replies: 4
Views: 1668

For example, you might create a shared container for generic error handling. Within the container additional columns could be added for the job name, the job start time, etc. In parallel jobs, other columns can be made to flow through the shared container without being specified, by employing "...
by ray.wurlod
Tue Dec 21, 2010 6:03 pm
Forum: General
Topic: list of complied jobs in a project from a given date
Replies: 3
Views: 1606

From Director choose the Project menu, then Print. Within the Print dialog you get a Print to File option.
by ray.wurlod
Tue Dec 21, 2010 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Copying Dataset Data into a Sequential file
Replies: 2
Views: 1828

Yes, but you must use the orchadmin command (dump option) which, in turn, means that the script must set APT_CONFIG_FILE and APT_ORCHHOME at a minimum.
by ray.wurlod
Tue Dec 21, 2010 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wait I/O
Replies: 3
Views: 1397

You'd have to ask IBM about that. As a "standard" it seems to me to be almost useless. If your job isn't doing any processing, then it isn't waiting on that and can demand as much I/O as the system can provide. Moving things to different (more) spindles will not reduce the total demand for...
by ray.wurlod
Tue Dec 21, 2010 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Truncation in ODBC Enterprise stage.
Replies: 5
Views: 2290

Do you have any good reason for using unbounded VarChar? If not, use VarChar(50) and you will guarantee sufficient storage for all characers in the string.
by ray.wurlod
Tue Dec 21, 2010 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings on data type int (int32 to uint32)
Replies: 3
Views: 3876

Include environment variable $OSH_PRINT_SCHEMAS as a job parameter and set it to True. This will show you which schema has field "abcd" defined as an unsigned integer.
by ray.wurlod
Tue Dec 21, 2010 3:27 pm
Forum: General
Topic: Job is not in the right state (compiled and not running)
Replies: 2
Views: 2189

Or that it has been changed in Designer and not yet (successfully) compiled.