Search found 53125 matches

by ray.wurlod
Tue Jun 01, 2010 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert to Global Time Zone using the Time Zone conversion
Replies: 3
Views: 3082

In addition to what Arnd advised, your method may need to handle changes in time within a time zone (usually called "summer time" or "daylight saving time"). Sometimes the change dates are regulated, some places it's more erratic. And some countries involve more than one time zone.
by ray.wurlod
Tue Jun 01, 2010 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer stage
Replies: 12
Views: 2906

Welcome aboard. Is this a server job (as marked) or a parallel job (as posted)? The answer will be different depending upon which it is.
by ray.wurlod
Tue Jun 01, 2010 2:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I process squential files in date order?
Replies: 10
Views: 2152

Why do you need a loop? Sort the files into date order (for example using an ls -lrt command) and use that result as the command line for a cat command. For example cat `ls -lrt /path/filepattern` Use that as the Filter command in a Sequential File stage. If the file names don't all fit on one line,...
by ray.wurlod
Tue Jun 01, 2010 2:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP option not available in Pivot stage
Replies: 8
Views: 3397

Accumulate the non-key columns into a value mark (@VM) delimited string and write to a hashed file where that is keyed by the grouping key and that column is defined as multi-valued in the metadata. Then read from the hashed file normalizing on the multi-valued field.
by ray.wurlod
Tue Jun 01, 2010 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Error
Replies: 20
Views: 10029

On a pedantic note, VarChar(1) is a waste of space. Char(1) should always be preferred, otherwise you're carrying the length prefix that has a constant value.
by ray.wurlod
Tue Jun 01, 2010 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Types not showing in Stages
Replies: 2
Views: 1200

What has changed? "Nothing" is not the correct answer. The change may be in DataStage, may be in Oracle, may be in the operating system, may be anywhere. You must become a detective.
by ray.wurlod
Tue Jun 01, 2010 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP option not available in Pivot stage
Replies: 8
Views: 3397

Why?

Would you use a hammer to fasten a nut and bolt?
by ray.wurlod
Tue Jun 01, 2010 1:12 am
Forum: General
Topic: Pbm using CURRVAL in datastage
Replies: 8
Views: 2221

Create a job that SELECTs the current value then passes this to the Oracle table using a regular INSERT (one with a VALUES clause containing a parameter marker).

DataStage wants to pass a value for at least one column for an INSERT.
by ray.wurlod
Mon May 31, 2010 10:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP option not available in Pivot stage
Replies: 8
Views: 3397

Are you prepared to use a Server job? It's easy there.
by ray.wurlod
Mon May 31, 2010 9:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP option not available in Pivot stage
Replies: 8
Views: 3397

Have you checked the PXPivot stage? (as opposed to the Pivot stage)
by ray.wurlod
Mon May 31, 2010 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there a BTEQ-equivalent PX stage?
Replies: 9
Views: 4250

There is a company that exhibited at IOD EMEA 2010 that has a utility for converting BTEQ scripts (and lots of other things, like Informatica, Ab Initio, etc.) into DataStage jobs and metadata that can be consumed by Metadata Workbench. The name of the company is COMPACT (there are more details, but...
by ray.wurlod
Mon May 31, 2010 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Want to access hash file from parallel job
Replies: 10
Views: 4665

Hashed File Calculator is still supplied (as at version 8.1.2).
by ray.wurlod
Mon May 31, 2010 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Error
Replies: 20
Views: 10029

Exactly the same problem, on identical hardware, using identical databases, identical job design and identical software versions?

If not (and note that you have no knowledge of the original poster's environment), please begin a new thread.
by ray.wurlod
Mon May 31, 2010 2:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Speed up ETL Process in Datastage job
Replies: 12
Views: 10537

The local manager of VMARK (first vendor of DataStage) here was fond of overclocking the CPU, much to the annoyance of the IT people who had to replace his fried CPU from time to time, but it did go faster! Systematically investigate your design to determine whether you're doing anything you don't n...