Search found 53125 matches

by ray.wurlod
Tue May 04, 2010 4:41 pm
Forum: General
Topic: how to seperate duplicates and unique records from seq file
Replies: 3
Views: 1600

The second person personal pronoun in English is spelled "you" - not "u". U is the name of one of our posters. Please strive for a professional standard of written English on DSXchange - it makes life easier for those whose first language is not English (like U, for example, who...
by ray.wurlod
Tue May 04, 2010 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: xml source
Replies: 2
Views: 1473

Moderator: please move to Enterprise Edition (parallel) forum

The forum in which you are presently reading is dedicated to testimonials about the DSXchange websites.
by ray.wurlod
Tue May 04, 2010 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change delimiter used for BCP IN by Sybase Enterprise Stage
Replies: 2
Views: 1965

I can't see any property in the stage that allows this. However, if non-numeric data types are quoted in the data file, the fact that you have delimiter characters in the data should not matter. Are you using IQ Write or ASE Write? If you use the Sybase IQ Load stage you have full control over the l...
by ray.wurlod
Tue May 04, 2010 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: version 8.0 and 8.1 on same solaris server
Replies: 5
Views: 2213

No. For version 8.anything, one engine tier per machine. It can share that machine with a version 7 server, but not with another version 8 server.
by ray.wurlod
Tue May 04, 2010 2:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job export without excecutable
Replies: 4
Views: 1871

What you seek to do is not possible as far as I am aware. Of course, it can be accomplished from the Designer client.

But you can remove the executable (DSJOBBINARY) from the export file subsequently.
by ray.wurlod
Mon May 03, 2010 10:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Connector manual
Replies: 3
Views: 1937

Very interesting... I can't find one either. Did you install the DB2 Connector from a fix pack, or was it part of a regular installation?
by ray.wurlod
Mon May 03, 2010 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiple loops in a squence job..
Replies: 4
Views: 1490

As I read the question, your outer loop processes a date, and the inner loop uses the outer loop's date as the previous date. Is this a correct reading? Otherwise it's a single loop with multiple loop index variables which you could combine (as a delimited string) into a single loop index variable a...
by ray.wurlod
Mon May 03, 2010 9:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with the logic
Replies: 9
Views: 3159

Is this a server job (as posted) or a parallel job (as marked)?
:?
by ray.wurlod
Mon May 03, 2010 9:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with the logic
Replies: 9
Views: 3159

QualityStage would do that parsing for you.

If you choose not to use QualityStage (maybe because you don't have it) then the parsing operation is something you have to do. I would recommend Field() functions into stage variables.
by ray.wurlod
Mon May 03, 2010 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character after "-" should be Capital letter
Replies: 4
Views: 1719

A simple remedy for your dilemma exists here.

I posted a full answer.
by ray.wurlod
Mon May 03, 2010 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with the logic
Replies: 9
Views: 3159

You might investigate the Trans() function for your lookups against a hashed file. This allows you to specify fourth argument of "C" that returns the original code if the reference value is not found. It will save you coding a number of If..Then..Else constructs. You will also, of course, ...
by ray.wurlod
Mon May 03, 2010 4:41 pm
Forum: General
Topic: training
Replies: 1
Views: 900

Get in touch with IBM to learn about their eLearning and remote delivery options.
by ray.wurlod
Mon May 03, 2010 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character after "-" should be Capital letter
Replies: 4
Views: 1719

Noting that you may need to modify the expression because of the space following the "-" character one solution is If Index(InLink.TheString, "-", 1) > 0 Then Field(InLink.TheString, "-", 1, 1) : "-" : UpCase(Left(Field(InLink.TheString, "-", 2, 1)))...
by ray.wurlod
Mon May 03, 2010 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is Dsx file is unix line terminator or Dos terminator
Replies: 3
Views: 1484

There is a single stream of data here. Of course partitioning it will screw things up!