Search found 53125 matches

by ray.wurlod
Wed Jan 19, 2011 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting of Data
Replies: 4
Views: 1953

Split the data (Copy stage), use two Column Import stages, then Join the streams back together. Or use a Transformer stage.
by ray.wurlod
Wed Jan 19, 2011 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal Error (39202)
Replies: 7
Views: 3222

1) Probably, but no promises.
2) You haven't needed to access TMPDIR before.
by ray.wurlod
Wed Jan 19, 2011 3:10 pm
Forum: General
Topic: Change the field from mechanical to Data warehousing
Replies: 3
Views: 1109

Welcome aboard.

You have not provided sufficient information to enable a cogent answer. What do you mean by "change"?

Have you had any DataStage training? If not, I strongly recommend that you get some, as soon as possible.
by ray.wurlod
Wed Jan 19, 2011 3:09 pm
Forum: General
Topic: How to capture the return value from a routine
Replies: 2
Views: 2402

Use an Execute Command activity downstream of the Routine activity. In the Execute Command activity execute a command that will write the routine output - captured from the $ReturnValue activity variable - into the file. One easy way is an echo command with > or >> redirection as appropriate.
by ray.wurlod
Wed Jan 19, 2011 3:06 pm
Forum: General
Topic: factless fact table
Replies: 2
Views: 1754

Is this an interview question? Factless fact tables typically record that an event has occurred, an event with which no measurables are associated. One example is in academia. A class may be presented by a presenter in a particular location on a particular date and time. (Possibly number of students...
by ray.wurlod
Wed Jan 19, 2011 3:04 pm
Forum: General
Topic: Exception handling in DS Server routine
Replies: 1
Views: 1005

Welcome aboard. What precisely is your problem? What precisely do you want to do if the command returns a non-zero exit status? To have the routine return null, set Ans = @NULL. But is this really what you want to do? Also, when THEN or ELSE is the last word on its line, a corresponding END is requi...
by ray.wurlod
Wed Jan 19, 2011 2:58 pm
Forum: General
Topic: include double quote in transformer stage
Replies: 2
Views: 2922

No problem. Just encase the double-quote constant in single quotes (you'll have to type this in manually) and concatenate.

Code: Select all

'"' : InLink.TheString : '"'
by ray.wurlod
Wed Jan 19, 2011 2:57 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Execute Column Analysis in IA
Replies: 13
Views: 6144

As noted, I am no longer at that site. Further, I was not directly involved, therefore have no details even in my memory.
by ray.wurlod
Wed Jan 19, 2011 3:44 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Execute Column Analysis in IA
Replies: 13
Views: 6144

If I had I would have posted something.

A couple of clients ago there were some inexplicable "Failed to start job" messages - I believe they ended up getting a patch.

Since I'm no longer there I can't advise the patch number, but you could search on Fix Central.
by ray.wurlod
Wed Jan 19, 2011 3:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Termination due to SIGINT
Replies: 3
Views: 3999

That's an in-house system - DataStage Manager is a job title in your organization.
by ray.wurlod
Wed Jan 19, 2011 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need to generate no. of rows =a value in a column
Replies: 6
Views: 1844

Use the looping construct in the Transformer stage. (You will need to be on version 8.5 for this.)
by ray.wurlod
Wed Jan 19, 2011 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need to generate no. of rows =a value in a column
Replies: 6
Views: 1844

I beg to differ. This is not a typical requirement.
by ray.wurlod
Wed Jan 19, 2011 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to include double quote in front and rear of row of data
Replies: 2
Views: 1156

Read the entire line as a single VarChar field, then concatenate quote characters in a Transformer stage before parsing into separate fields.
by ray.wurlod
Wed Jan 19, 2011 3:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to count number of records in binary file
Replies: 7
Views: 4307

Rumu, have you tried what Mike suggested?

orissajobs welcome aboard, but you'll need to be much more specific about what kind of help you are seeking.
by ray.wurlod
Wed Jan 19, 2011 3:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting of Data
Replies: 4
Views: 1953

Parse the source into separate columns using a Column Import or Transformer stage, then pivot using a Pivot Enterprise stage.