Search found 53125 matches

by ray.wurlod
Thu Feb 20, 2014 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiload in "TeraDataConnector PX"
Replies: 2
Views: 1053

Set access method to Bulk, and bulk method to Update.

All this is documented in the Connectivity Guide for Teradata manual.
by ray.wurlod
Thu Feb 20, 2014 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP dataset needs to update/delete/insert an Oracle stage
Replies: 5
Views: 2318

This should be available from the table definition you imported from the Oracle table.
by ray.wurlod
Thu Feb 20, 2014 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Replicating One input row to multiple rows
Replies: 12
Views: 3652

All you need is the loop exit condition, a loop variable that extracts anything specific to that iteration, and transfers that to the output link along with any columns transferred with the input link.
by ray.wurlod
Thu Feb 20, 2014 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion from the UTF-8 character set to UTF-16LE warning
Replies: 7
Views: 8243

Have you tried setting NLS mapping to "UTF-16 Little Endian" in DataStage?
by ray.wurlod
Wed Feb 19, 2014 8:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Break operation in row wise comparison
Replies: 14
Views: 6308

Some developers seem to have the attitude that lack of documentation = job security.

Anyone working for me produces the design and documentation first, before being given the chance to play with DataStage (or whatever tool).
by ray.wurlod
Tue Feb 18, 2014 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup job hanging up
Replies: 5
Views: 2186

iq_etl wrote:We have removed columns not referenced, rows not needed, and use outer joins to reference the tables that have millions of rows.

The job no longer hangs up and takes only about a minute to execute.
You have been well advised. :wink:
by ray.wurlod
Tue Feb 18, 2014 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsrecord command
Replies: 2
Views: 2806

There is no documented answer to that question. Presumably, from the behaviour you describe, dsrecords command uses the configuration file stored within the Data Set descriptor file (and, hopefully, throws a warning if any node is inaccessible at time of execution).
by ray.wurlod
Tue Feb 18, 2014 7:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update a table with Trigger on Table
Replies: 8
Views: 4340

Run the ODBC Connector stage in Sequential mode. Set this property on the Advanced tab in stage properties.
by ray.wurlod
Tue Feb 18, 2014 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Replicating One input row to multiple rows
Replies: 12
Views: 3652

Use Looping within a Transformer stage (assuming you have version 8.5 or later). Loop exit condition is

Code: Select all

@ITERATION <= InLink.LoopCount
by ray.wurlod
Tue Feb 18, 2014 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to throw a warning in PX job
Replies: 2
Views: 1288

You can use the same technique in an after-job subroutine in a parallel job. From within a Transformer stage, however, you would need to have created a parallel routine (compiled, linked and recorded it) that you could call from the Transformer stage. That routine would use the DataStage API functio...
by ray.wurlod
Tue Feb 18, 2014 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job running very slow.
Replies: 4
Views: 1822

Which job is taking all the time? (You can determine this information from the job logs or from the Operations Console.) Why? (You can determine this information from the Performance Analysis tool in Designer.)
by ray.wurlod
Tue Feb 18, 2014 2:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Break operation in row wise comparison
Replies: 14
Views: 6308

Better to initialise to "???" rather than @NULL - comparisons to @NULL always return @NULL.
by ray.wurlod
Tue Feb 18, 2014 2:05 pm
Forum: General
Topic: Write Exceptions to File
Replies: 1
Views: 1103

Expose job parameters to receive these values. In the Job activity set the values for those parameters using the activity variables from the Exception Handler.
by ray.wurlod
Tue Feb 18, 2014 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Default Message Handler doesnt get removed
Replies: 3
Views: 2831

If a job doesn't have its own message handler it will use the project default message handler if one is defined.
by ray.wurlod
Tue Feb 18, 2014 1:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Break operation in row wise comparison
Replies: 14
Views: 6308

If you enclose in Code tags, you will get a readable format.