Search found 53125 matches

by ray.wurlod
Mon Jul 06, 2009 6:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(1) - ...combinee graph
Replies: 7
Views: 3612

Without knowing your job design it is impossible to say. Dumping the score may help, when you re-enable operator combination, to identify where a cycle may be being created.
by ray.wurlod
Mon Jul 06, 2009 6:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage problem
Replies: 10
Views: 4163

That seems reasonable. There was no error in the stage per se.

I vaguely recall that there is a "treat warnings as fatal" check box available. Perhaps you could use that.
by ray.wurlod
Mon Jul 06, 2009 6:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ASCII to EBCDIC conversion
Replies: 4
Views: 1441

Oconv(TheNumber, "MX") will convert a decimal number into hexadecimal equivalent.

This has no relationship whatsoever with ASCII/EBCDIC encoding.
by ray.wurlod
Mon Jul 06, 2009 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update the target table with max date
Replies: 5
Views: 2624

In server jobs the Aggregator stage has First and Last as set functions per group.
by ray.wurlod
Mon Jul 06, 2009 6:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To do job Abort in server
Replies: 3
Views: 1280

I always counsel never to design server jobs to abort. Issue warnings, certainly, but retain control.
by ray.wurlod
Sun Jul 05, 2009 11:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge 4 flat files
Replies: 8
Views: 1796

So can anyone else. U is the name of one of our posters. The second person personal pronoun in English is spelled "you", not "u". Please strive for a professional standard of written English on DSXchange. It assists those whose first language is not English, if they don't have to...
by ray.wurlod
Sun Jul 05, 2009 8:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting flag to only one row where 1:m exists for key
Replies: 3
Views: 1003

Sort by customer_id, weight and last_update_dt and use Remove Duplicates stage to preserve the last of each customer_id group.
by ray.wurlod
Sun Jul 05, 2009 8:14 pm
Forum: General
Topic: How to use wave number in job
Replies: 9
Views: 2819

Add a column to the target table indicating the source table. Provide this value via a job parameter that can also be used in the table name field. The name of the table could be generated inside a loop in a sequence.
by ray.wurlod
Sun Jul 05, 2009 5:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting Data with Datastage
Replies: 2
Views: 2359

Import the target table definition. Are there any NChar or NVarChar columns defined in the imported table definitions? If so, these are the ustrings about which the exporter is complaining.
by ray.wurlod
Sun Jul 05, 2009 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing values of a text file to User variables.
Replies: 11
Views: 3861

A simple cat command (Execute Command) upstream of the User Variables stage should suffice. The user variable derivations can use Field() functions to extract the relevant columns from the row that was read. (I've assumed that the file has one line. Without that assumption the requirement makes litt...
by ray.wurlod
Sun Jul 05, 2009 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort the output file
Replies: 10
Views: 2347

But the transformer in server does not alter the sequence of the incoming rows but the parallel job does. No it doesn't. YOU may have done something to affect the sort, such as incorrect partitioning or specifying sorting on the input link, but the Transformer stage does NOT affect sorting by itsel...
by ray.wurlod
Sun Jul 05, 2009 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is the solution to get sequence numbers in DS server jo
Replies: 2
Views: 1611

A useful hashed file is SDKSequences. You can access this through the SDK key management routines (among other methods).
by ray.wurlod
Sun Jul 05, 2009 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: APT_DECIMAL
Replies: 6
Views: 3983

Arnd, I'm afraid that haiku has 18 syllables.

Perhaps the final line could be "no longer green".
by ray.wurlod
Sun Jul 05, 2009 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installation issue
Replies: 6
Views: 1734

You need MQ client.

The MQ server can be local or remote (which is a change from version 7).
by ray.wurlod
Sun Jul 05, 2009 4:53 pm
Forum: General
Topic: How to use wave number in job
Replies: 9
Views: 2819

You never use wave number. It is for internal use only. It is DataStage's allocated number to identify a unique instance of a job run.