Search found 53125 matches

by ray.wurlod
Thu Nov 02, 2006 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trying to Pass parameter through job control
Replies: 5
Views: 1049

You're not trying to set a parameter in the same job that's running?!!

Oh gosh, you are!!! (Notes use of DSJ.ME as job handle)

This is specifically prohibited. It's not possible. Job parameter values are set when the job starts, and cannot be changed thereafter.
by ray.wurlod
Thu Nov 02, 2006 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read_delimited()- Required Column Missing
Replies: 23
Views: 6733

Before we do that, please summarize what information you have actually gotten from the message. For example, I can discern that you get this message using View Data when still designing the job. I can discern much more. But we need to know how good your diagnostic skills are. Philosophy Corner If yo...
by ray.wurlod
Thu Nov 02, 2006 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange error occuring while loading master sequence
Replies: 7
Views: 2781

:idea: Please wrap your design in Code tags so that things align as you would wish. Use Preview to get it right.
by ray.wurlod
Thu Nov 02, 2006 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split one record into several records
Replies: 11
Views: 3356

Etiquette Note We don't do urgent here. It is an all volunteer site, we post as and when we can. And then only if we've something to contribute. If you need urgent, then sign up for premium service with your support provider, and learn the true cost of urgent. Or, as the old saying goes, lack of pl...
by ray.wurlod
Thu Nov 02, 2006 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trying to Pass parameter through job control
Replies: 5
Views: 1049

The space between the function name and its left parenthesis is probably the culprit here.

Code: Select all

ErrCode = DSSetParam (JobHandle,ParamName, PH02) 

Error code -1 decodes as "invalid handle".
by ray.wurlod
Thu Nov 02, 2006 1:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: One more lookup problem
Replies: 18
Views: 4248

Fundamental Principle It is not possible to combine rows from multiple sources unless there is some common factor, without generating a Cartesian product. A Cartesian product contains M * N rows, where there are M rows in one source and N rows in the other source. You don't really want to go there.
by ray.wurlod
Thu Nov 02, 2006 1:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed
Replies: 23
Views: 6775

No. Rebooting destroys the evidence.
by ray.wurlod
Thu Nov 02, 2006 1:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pivoting data in rows to column
Replies: 9
Views: 19789

Welcome aboard. :D

The Pivot stage is what you need. It has its own manual (located with all the other manuals on your client machine).
by ray.wurlod
Thu Nov 02, 2006 1:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: suggest which typr of partition i use in PX job..
Replies: 13
Views: 3941

If the keys are integer sequences, then Modulus becomes a candidate for most efficient partitioning algorithm. If the two tables are in the same instance of the same database, a join performed in the database will almost certainly be more efficient than using any of the DataStage stages - the latter...
by ray.wurlod
Thu Nov 02, 2006 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split one record into several records
Replies: 11
Views: 3356

ambasta wrote:I cannot create any additional column.

You CAN create as many additional columns in your job as you require. Columns are link properties. These extra columns may exist only on the link between your Transformer stage and your Pivot stage.
by ray.wurlod
Thu Nov 02, 2006 10:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split one record into several records
Replies: 11
Views: 3356

Assuming there is a maximum number of values for the two-character codes, separate them into separate columns (probably in a Modify or Transformer stage using substring techniques), then use a Pivot stage to generate a row for each.
by ray.wurlod
Thu Nov 02, 2006 10:49 am
Forum:
Topic: Pivot
Replies: 1
Views: 1071

Welcome aboard. There is no Pivot stage in MetaStage, and no metadata implications for pivoting. Try posting a question in either the server forum or the parallel forum, depending upon your job type. You have indicated it's a server job, so that's where you ought to post. The Pivot stage has its own...
by ray.wurlod
Thu Nov 02, 2006 10:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load Flag Update in staging table
Replies: 2
Views: 869

The safest way is to do two passes. One does the load, and captures any rejects. The second pass either performs a lookup against the target table to set "F" (all others in the staging table that are null are set to "L") or, if you have captured rejected rows, reads those keys to set the flag to "L"...
by ray.wurlod
Thu Nov 02, 2006 10:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Definition on an SQL Stored Proc
Replies: 7
Views: 1829

User-defined SQL could use the quoted identifier "Column A". Apart from that I can't think of any other strategy.

Put an annotation and/or some description text into your design to alert future maintainers of your reason for using user-defined SQL rather than generated SQL.
by ray.wurlod
Thu Nov 02, 2006 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fail to install hawk client software
Replies: 1
Views: 1112

You have a special email address for reporting problems to the Hawk Beta team. They need to know. Let them know - the fewer errors there are in the GA (general availability) product, the happier we'll all be. I don't believe that Windows XP is a supported platform. But I may be wrong - I have not ye...