Search found 53125 matches

by ray.wurlod
Thu Jul 29, 2010 8:35 pm
Forum: IBM QualityStage
Topic: Converting Special Characters from UTF-8 to ASCII
Replies: 5
Views: 3479

Well done. ISO 8859-1 is sometimes called "extended ASCII".

Please mark this thread as Resolved using the green button at top.
by ray.wurlod
Thu Jul 29, 2010 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I get different record type into 1 dataset??
Replies: 6
Views: 1777

A Data Set may have only one record schema.

However, you can use subrecords to store variant formats in a Data Set. The penalty is that you have to create and later parse the subrecords.
by ray.wurlod
Thu Jul 29, 2010 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stage variables in a lookup stage
Replies: 5
Views: 1509

No and no.

ODBC stages can be linked to either, but they are separate stage types.
by ray.wurlod
Thu Jul 29, 2010 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to use join stage for joinig more than two tables
Replies: 8
Views: 4449

More than two inputs.

In SQL it would look something like
SELECT columns FROM tableA,tableB,tableC
WHERE tableA.key = tableB.key AND tableA.key = tableC.key

tableB is the intemediate here.
by ray.wurlod
Thu Jul 29, 2010 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum Record Limit For lookup stage
Replies: 11
Views: 8744

Merge is not SQL functionality - it implements a "master and update" mechanism.
by ray.wurlod
Thu Jul 29, 2010 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning a long char in a PX C++ routine
Replies: 5
Views: 1756

You should be OK. I assume that you'll actually be passing a pointer to the buffer.
by ray.wurlod
Thu Jul 29, 2010 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Stage File Pattern Help
Replies: 1
Views: 1081

Try using "C:/folder/*.txt" (forward slashes).
by ray.wurlod
Thu Jul 29, 2010 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Carry Over Filename As Output Column
Replies: 1
Views: 1013

Complex Flat File stage does not have this functionality.

Indeed I was not aware that this stage can read more than one file at a time.
by ray.wurlod
Thu Jul 29, 2010 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion uint64 to decimal(15,0) warning
Replies: 5
Views: 2230

You can use decimal_from_decimal() function.
by ray.wurlod
Thu Jul 29, 2010 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to determine current working directory!
Replies: 4
Views: 2772

Is the PWD environment variable set? If not, set it to ".".
by ray.wurlod
Thu Jul 29, 2010 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File - redefining a Varchar as Time
Replies: 6
Views: 1759

Modify stage functions tend to be expressed as "from", for example date_from_string().

I'm surprised about %hh:%nn not working against 23:00. This might be a bug in the Sequential File stage parser. Are you able to modify the source data so that the time has seconds (23:00:00) as a test?
by ray.wurlod
Thu Jul 29, 2010 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: notnull conversion with non-nullable input
Replies: 9
Views: 7555

Turn on $OSH_PRINT_SCHEMAS and look at each link's schema to see if what DataStage has defined and what you think is defined are identical.
by ray.wurlod
Thu Jul 29, 2010 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there anyway to convert PL/SQL to DataStage?
Replies: 6
Views: 3624

Re: Is there anyway to convert PL/SQL to DataStage?

spkrimb wrote:i need to convert the pl/sql code into datastage code.can anyone explain me the process of conversion.
1. Analyze the logic in the PL/SQL and reproduce that logic in DataStage.
2. Hire someone else to do that for you.
3. Some combination of the above (you do the analysis, they do the coding).
by ray.wurlod
Thu Jul 29, 2010 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I force an error on a negative DB2 Return Code?
Replies: 12
Views: 4640

No, it requires a Transformer stage before each ODBC stage. I imagine that you quite often have one of these, to drive the link into the ODBC stage.
by ray.wurlod
Thu Jul 29, 2010 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PHANTOM BASIC compile isn't working
Replies: 3
Views: 2056

You can not compile a job directly with the BASIC statement. The internal compiler knows where the components of the job are stored internally - it moves them to a work area and compiles them there with appropriate syntax. Indeed, most of a server job is not compiled at all. Transformer stages are t...