Search found 53125 matches

by ray.wurlod
Wed Nov 15, 2006 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IPC Buffer Size not exceeding 1024Kb
Replies: 4
Views: 1516

In DataStage, KB is always 1,024 bytes, MB is always 1,024,576 bytes, and GB is 1,073,741,824 bytes. Never bits.

Or 1,024; 10,24,576 and 1,07,37,41,824 on the sub-continent! :wink:
by ray.wurlod
Wed Nov 15, 2006 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inetrpreting performance stats
Replies: 5
Views: 1329

I wasn't asking you to; I was suggesting how you can make the data easier to view for yourself.
by ray.wurlod
Wed Nov 15, 2006 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing standalone SQL statement
Replies: 4
Views: 1599

Separate jobs. To truncate a table, generate just one row (to trigger the operation) and use user-defined SQL. Or, if the stage type permits, choose "truncate table then insert rows" as the load method, so that you don't need to re-invent the wheel.
by ray.wurlod
Wed Nov 15, 2006 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installing parallel canvass in standalone system
Replies: 6
Views: 1357

Only one version of DataStage can be used to execute parallel jobs on a Windows system; that is version 7.5x2. You need to obtain a copy of that specific version (the "x" really is part of the version number), and a licence for it. If you have a DataStage client installed, then it will be able to di...
by ray.wurlod
Wed Nov 15, 2006 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing standalone SQL statement
Replies: 4
Views: 1599

It's not possible. Passive stages, like the ODBC stage, only expose methods for performing tasks. Active stages, like Transformer stages, generate processes that actually invoke those methods.
by ray.wurlod
Wed Nov 15, 2006 2:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inetrpreting performance stats
Replies: 5
Views: 1329

This is a tab-separated report obtained by enabling stage tracing from the Job Run Options dialog when issuing a job run request and checking the Statistics check box. Copy it from there and paste it into a tool like Excel. You can use it to identify the "hot spots" within stage execution. Your stat...
by ray.wurlod
Wed Nov 15, 2006 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IPC Buffer Size not exceeding 1024Kb
Replies: 4
Views: 1516

The behaviour of the control suggests that the upper limit is 1024KB. In a quick survey I can not find a limit documented.
by ray.wurlod
Wed Nov 15, 2006 10:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Format Delimiter ascii 168 (¿)
Replies: 11
Views: 5165

You need to specify the correct number of delimited columns on the Columns grid. You can, indeed, specify more than exist in the record, and use the Missing Columns property to handle those situations. What happens when you try to import the table definition from that sequential file and specify 168...
by ray.wurlod
Wed Nov 15, 2006 10:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input column disabled for lookup stage
Replies: 5
Views: 1217

Lookup keys are disabled in the Lookup stage (a) when the reference input link is fed from a Lookup File Set stage or (b) when the reference input link is fed from a directly-connected DB2 Enterprise or Oracle Enterprise stage. In both these cases the key is already known. The stream input link must...
by ray.wurlod
Wed Nov 15, 2006 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP file stage
Replies: 22
Views: 6523

Are you convinced by now that the FTP stage can not use environment variables in the way that you want? Every test you've conducted has verified that this is the case. If you want the product changed, you will need to make a business case to the manufacturer.
by ray.wurlod
Wed Nov 15, 2006 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - Problem
Replies: 7
Views: 2738

Have DataStage dump the actual schemas that were used. Set the OSH_PRINT_SCHEMAS environment variable.
by ray.wurlod
Wed Nov 15, 2006 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom problem
Replies: 6
Views: 1433

As I noted, Nvl() may not have been directly used in the job - it may be called from some other routine that is used in the job. In such cases you will not find it in an export of the job.
by ray.wurlod
Wed Nov 15, 2006 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem on select date fields
Replies: 3
Views: 991

What are you doing to the date in the Transformer stage?

Is the date actually populated in the DB2/390 table? Could it be null (for example date of death is often null)?
by ray.wurlod
Wed Nov 15, 2006 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - Problem
Replies: 7
Views: 2738

What's the data type? You can't effectively Trim() a Char data type; it is immediately padded to length. You probably need to effect the lookup using VarChar data type on both inputs, or identically padded Char. You also need to ensure that the inputs are identicatlly partitioned or that the referen...
by ray.wurlod
Wed Nov 15, 2006 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum Size for job name?
Replies: 4
Views: 1197

First find out whether your employer has any documented naming standards. If so, adhere to those.