Search found 53125 matches

by ray.wurlod
Mon Jan 07, 2008 8:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Stage Subroutine
Replies: 14
Views: 3591

Not without seeing the job design and the routine code.
by ray.wurlod
Mon Jan 07, 2008 8:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: convert function
Replies: 0
Views: 961

Yes, assuming that abc is a variable name. But only for those characters you have mentioned in the first argument of Convert().
by ray.wurlod
Mon Jan 07, 2008 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: First Character as uppercase character
Replies: 3
Views: 1004

If

Use substring or Left() to isolate the first character.
Test this against itself with the UpCase() function applied, or against an upper case alphabet using the Index() function.
Use If to generate an int8 result.
by ray.wurlod
Mon Jan 07, 2008 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup through a DB2 UDB stage fails
Replies: 9
Views: 2551

Unless you're getting NLS warnings, NLS is not the culprit. Does using a sparse lookup give the right results? If so you need to compile in trace mode, or insert a Peek stage, to see what's actually being loaded into the virtual Data Set when not in trace mode.
by ray.wurlod
Mon Jan 07, 2008 12:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rolllike function
Replies: 4
Views: 876

I am not able to see your reply since it is part of the premium content. Is there a way that you could send your reply to <<private email address given>>? Yes, but I won't. Premium content is one of the ways that the hosting and bandwidth costs of DSXchange are met. I have no intention of prejudici...
by ray.wurlod
Mon Jan 07, 2008 12:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rolllike function
Replies: 4
Views: 876

This will almost certainly need to done using stage variables in a Transformer stage that has its input sorted (and partitioned) by the key columns. A Sort stage can generate a key change column, which may prove useful.
by ray.wurlod
Mon Jan 07, 2008 12:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Will Not Compile
Replies: 2
Views: 1551

... or that one or more of the environment variables that need to be set to tell DataStage about the compiler/linker has not been given a correct value.
by ray.wurlod
Mon Jan 07, 2008 11:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run the Oracle enterprise stage in Parallel while reading da
Replies: 2
Views: 1041

Time to mark this thread as Resolved, then.
by ray.wurlod
Mon Jan 07, 2008 11:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup through a DB2 UDB stage fails
Replies: 9
Views: 2551

Is any of the key fields VarChar and, if so, might the values in the two data sets have been trimmed differently? That is, might one set of values have, say, trailing spaces and the other not have them?
by ray.wurlod
Mon Jan 07, 2008 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure During Execution of Operator Logic
Replies: 29
Views: 17148

Yes. Your support provider. That's one of the reasons you pay maintenance.
by ray.wurlod
Mon Jan 07, 2008 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Linkname.NOTFOUND
Replies: 3
Views: 1376

You are not designing server jobs, so cease using a server job mindset.
by ray.wurlod
Mon Jan 07, 2008 11:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad trailing quote character
Replies: 8
Views: 3792

One possibility is that the importer stops scanning once ten characters have been processed if the data type has been declared as int32. OK, 11 characters, in case the first one is a sign.

You really do need to check your data.
by ray.wurlod
Mon Jan 07, 2008 11:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: searching parameter value within all DS jobs
Replies: 9
Views: 2174

To paraphrase an old joke, if I were going there I would not be starting from here. This is something you really need to have planned for in advance, and used a tool such as Parameter Manager. About all you can do now is export the entire project and search the export file.
by ray.wurlod
Mon Jan 07, 2008 11:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column to rows
Replies: 8
Views: 2811

Code: Select all

If @OUTROWNUM = 1 Then InLink.Field001 Else InLink.Field002
Preserve these values in stage variabales. Constrain your output such that

Code: Select all

InLink.Field001 = 'EndorsementSqn'
by ray.wurlod
Mon Jan 07, 2008 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup using Lookup File set
Replies: 5
Views: 1023

Key expressions cannot be set on Key columns.Connected stage is used for lookup. When the connected stage is a Lookup File Set the key - and an index (hash table) - have already been defined. Therefore you are not permitted to redefine the key in the Lookup stage. You have to, on the stream input to...