Search found 459 matches

by T42
Mon Dec 27, 2004 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while inserting in Oracle Stage
Replies: 3
Views: 1991

Maybe you are not loading data correctly?

The error message is not helpful. Please provide more details from the logs, especially the warning messages before this failure message.
by T42
Mon Dec 27, 2004 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in lookup stage
Replies: 4
Views: 2398

This feature should either be available now, OR coming soon. I have not touched 7.5a, so I am not sure if it's available for that version.
by T42
Mon Dec 27, 2004 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Errors using Merge Stage but improvement with file set stage
Replies: 1
Views: 1463

The input dataset does not have ACCT_NBR.

Check your metadata in the job.
by T42
Mon Dec 27, 2004 7:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing target stage based on the source stage input
Replies: 1
Views: 1197

If you can call the stored procedure in SQL, you can do it in DataStage.

Since you're using Oracle, there's a Stored Procedure Stage on DataStage EE 7.5 that can do what you need.

Also, why not just use the stored procedure stage to check whether it should run or not?
by T42
Mon Dec 27, 2004 7:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need performance boost in the job
Replies: 1
Views: 1528

Try not using UNION. Pull it using 3 distinct Teradata stages, and join them (using funnel, if it's a pure UNION, lookup/merge/join if it's actually a single SQL statement joining tables). See how the performance is. It's worth a try.
by T42
Mon Dec 27, 2004 7:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Create APT Config File
Replies: 3
Views: 2171

Do read the following DataStage document: man_gde.cfg (DataStage Manager Guide), chapter 11 - "The Parallel Engine Configuration File".
by T42
Mon Dec 27, 2004 6:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simple Tranformer/Basic Transformer
Replies: 5
Views: 2681

May I suggest that you contact Ascential for some beginning training on how Parallel Extender (EE) works for students who have previously used Server? One option is "DataStage Essentials for Enterprise Edition for rev 7.x", which you could find more information about on the following site:...
by T42
Mon Dec 27, 2004 6:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NANs: Floating point error
Replies: 2
Views: 2080

Trust Ray on this. Sure you could hack together a solution using EE, but I really really really advise that you don't. Stick to ProfileStage or AuditStage. You can build something in minutes that would take a couple hours or more under EE.
by T42
Mon Dec 27, 2004 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compile and run DS Parallel jobs
Replies: 9
Views: 5119

I sense that one thing needs to be clarified: Parallel jobs does not equal to Server jobs. You must develop a new job using the Parallel palette in order to take full advantage of EE. Copying over the Server to a Parallel job will not work. You may see a modest performance boost in running Server in...
by T42
Mon Dec 27, 2004 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hashed File in a Server Shared Container for read access PX
Replies: 10
Views: 3393

Land it to a sequential file in server. In PX, pull it and use a regular lookup stage. Won't that result in the same or poorer performance than the hashed file in a server container? It will out-perform the hash file within a server container, especially if you have a very decent disk I/O throughpu...
by T42
Sun Dec 19, 2004 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling PL/SQL procedure from a Data Stage job
Replies: 5
Views: 6111

If you can call the PL/SQL procedure within SQL, you can call it within DataStage. (See: Using calls within SELECT statements). There is also an Oracle Stored Procedure stage (and soon-to-be DB2 if that's not out already). Just don't expect to be able to control it very much like you do in SQL Navig...
by T42
Sun Dec 19, 2004 1:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when Transformer included in Parallel Extender.
Replies: 5
Views: 2671

Where's your C++ compiler?
##W TBLD 001014 07:05:40(002) <main_program> Error when checking composite operator: Output from subprocess: sh: /opt/SUNWspro/bin/CC: not found
by T42
Sun Dec 19, 2004 12:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can i Install Datastage on Linux 7.x
Replies: 4
Views: 2708

Only Redhat AS 2.3 is supported at this time.

Again, you MUST purchase a license before installing DataStage.
by T42
Sun Dec 19, 2004 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Clarification on Buildops
Replies: 2
Views: 1670

By default, it runs in parallel. You can force it to run in sequential mode, just as you can with any stages.
by T42
Sun Dec 19, 2004 12:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hashed File in a Server Shared Container for read access PX
Replies: 10
Views: 3393

Land it to a sequential file in server. In PX, pull it and use a regular lookup stage.