Search found 53125 matches

by ray.wurlod
Tue Oct 05, 2004 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Representing a decimal with thousand separators
Replies: 3
Views: 1686

I'm reminded of nothing more than the PHB who wanted a document faxed on green paper. My response to the customer would be to ask why a "pure" PX solution is required; doesn't the fact that you can use a BASIC Transformer stage directly from the PX palette mean that you have a "pure" PX solution? Cu...
by ray.wurlod
Mon Oct 04, 2004 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Working with HEX data
Replies: 3
Views: 2680

Iconv() and its partner function Oconv() are primarily for server jobs. You posted your query in what it intended to be the server jobs forum; I know you are aware of the parallel jobs forum because you also post there. These BASIC functions are available in PX (parallel jobs) but only in limited ci...
by ray.wurlod
Sun Oct 03, 2004 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to count incoming and outgoing rowsusing datastage
Replies: 8
Views: 10837

Don't do it at all during execution. One of the fundamental principles of performance is not to impact performance by trying to measure it. These statistics are collected for you. You can get them from "active stage finishing" events in the log (using BASIC code if you must). Why not just invoke the...
by ray.wurlod
Fri Oct 01, 2004 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Retrieving log sum/dtl of a single invocation
Replies: 2
Views: 1501

Welcome aboard! :D I'm not sure you can do this with dsjob as supplied. Director client sends a request that constrains on invocation ID, but I'm not aware that this capacity exists in dsjob . You can view source code for dsjob in the Server Job Developer's Guide (servjdev.pdf), since dsjob was orig...
by ray.wurlod
Fri Oct 01, 2004 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data type convertion in modify stage
Replies: 7
Views: 4852

Not every ten digit number is an integer.
The largest (four byte (32 bit)) signed twos-complement integer is 2147483647; the largest unsigned is 4294967295.
by ray.wurlod
Fri Oct 01, 2004 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hi
Replies: 2
Views: 909

Welcome aboard! :D DataStage has optional (separately priced) components for working directly with SAP R/3, either through RFC or FTP. For example the SAP R/3 Extract PACK contains the plug-in stage and the libraries that it uses. This has been certified by SAP as generating valid ABAP code and lice...
by ray.wurlod
Fri Oct 01, 2004 4:00 pm
Forum: Enhancement Wish List
Topic: Integrate BASIC file reading with other component
Replies: 8
Views: 4339

Yes, I've done this, but without writing any code, using Sequential File stages in some cases, and using an after job subroutine (ExecSH) to execute a UNIX mv command in other cases (move file once processed). If you're needing to interact with some other application, you may find the capacity of th...
by ray.wurlod
Fri Oct 01, 2004 1:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Level Environment Variables ---------
Replies: 12
Views: 4667

How about encrypted environment variables? :roll:
by ray.wurlod
Thu Sep 30, 2004 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Level Environment Variables ---------
Replies: 12
Views: 4667

I vaguely recall there was something in the 7.5 readme about this being fixed. (My current client is on 7.1, so I can't check.)
by ray.wurlod
Thu Sep 30, 2004 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Empty Source File
Replies: 9
Views: 2839

I'd put it in a separate thread, since it's not about "empty source file" :evil:
by ray.wurlod
Thu Sep 30, 2004 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple DataStage Server instances on one Machine
Replies: 11
Views: 2882

Come to Australia (it's springtime!). :lol:
by ray.wurlod
Thu Sep 30, 2004 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Denormalizing Data
Replies: 7
Views: 2301

DB2 is my DB env. in DataStage. How do you implement this in DataStage?
You use user-defined SQL in the stage type that is extracting the data from DB2.
by ray.wurlod
Thu Sep 30, 2004 4:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Heap error
Replies: 4
Views: 1116

While there are tools for moving hashed files between operating systems, it's much easier to have DataStage create them in the new environment than to learn the tools. To save anyone asking, the tools include uvbackup / uvrestore and format.conv / fnuxi with -export and -import options. The answer t...
by ray.wurlod
Thu Sep 30, 2004 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sources and objects
Replies: 2
Views: 654

Surely all these variable pieces of information can be set up as job parameters? Then there is no need for any opening of the job design; you can have the job read-only in production (always recommended). Change the default parameter values - if desired - using Director. (I tend to recommend to clie...
by ray.wurlod
Thu Sep 30, 2004 4:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connectivity to AS/400 System
Replies: 15
Views: 9380

There's nothing special about DataStage.
You configure the ODBC driver information exactly the same way that you would for any other ODBC client.