Search found 53125 matches

by ray.wurlod
Sun Sep 10, 2006 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: creating job statistics from joblog created in datastage
Replies: 11
Views: 6035

Challenge that requirement, for it is asinine. The right place to capture job statistics is after the job is finished. [Fundamental principle; the act of measuring invalidates the measurement while a process is executing.] This means in the job sequence or shell script that controls it. That, in tur...
by ray.wurlod
Sun Sep 10, 2006 3:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is it possible to capture the UNIX exit code from DS
Replies: 2
Views: 1094

Prefer DSExecute(). The third argument captures the output and the fourth argument captures the exit status.
by ray.wurlod
Sun Sep 10, 2006 2:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcopen() - Error in open file/dir
Replies: 2
Views: 3883

Check for /tmp becomin full during execution of the job.

If this is happening, change the setting of UVTEMP and TMPDIR environment variables to point to somewhere with more space.
by ray.wurlod
Sun Sep 10, 2006 2:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record level properties
Replies: 5
Views: 1026

Declare the fixed-width columns as being of type Char with an appropriate precision, but as soon as you have even one delimiter character, you must describe the record structure as delimited. If there are no delimiters between the "fixed-size" fields, you must read them as one and parse them within ...
by ray.wurlod
Sun Sep 10, 2006 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage EE 7.5x2
Replies: 8
Views: 1571

That's no big surprise, since you installed it having Administrator rights, so that the Adminstrator user became the owner of all kinds of things.
by ray.wurlod
Sun Sep 10, 2006 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiling job
Replies: 3
Views: 984

Irrespective of platform, an osh script is generated. An operating system control file (shell script or bat file) to execute the osh script is also generated. If the job includes Transformer stage(s) or BuildOp(s), then some C++ modules will also be created, and compiled and linked.
by ray.wurlod
Sun Sep 10, 2006 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conerting a decimal(12,3) to decimal (9,2)
Replies: 4
Views: 1924

What will happen when the source value is too large to fit in a decimal[9,2] field?

Please post your exact decimal_to_decimal specification (I am assuming here that you are using a Modify stage).
by ray.wurlod
Sun Sep 10, 2006 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: string to decimal
Replies: 5
Views: 1903

It is always safest to treat text files as if they contain text as the only data type. Within the DataStage job you can then apply data type conversion functions using a Modify stage or a Transformer stage. The obvious exception is when you know that there are binary data in the "text" file.
by ray.wurlod
Sun Sep 10, 2006 2:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine
Replies: 2
Views: 904

It's easy to write such a routine. The down side is that you can not invoke that routine from a parallel Transformer stage. And you've indicated that this is a parallel job. The particular compilation error suggests absence of a required DEFFUN declaration, but that's just an educated guess.
by ray.wurlod
Sun Sep 10, 2006 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: why to import table definitions by Orchestrate Schema def.
Replies: 5
Views: 1736

I don't know if "u" can (whoever "u" is), but I can. This information is in the manuals, which a thorough reading will reveal, and/or in the readme notes that ship with the product. The knowledge is also conveyed in the vendor's training classes; in this particular case DX434 (DataStage Essentials, ...
by ray.wurlod
Sun Sep 10, 2006 2:34 am
Forum: General
Topic: where to find a SAP R/3 Pack training class
Replies: 2
Views: 2158

Here is a good start point for IBM training, near the bottom you will find references to what you want. The course code is DX500 and its particular catalog entry can be found here - you will find links to schedules, etc., on these pages.
by ray.wurlod
Sun Sep 10, 2006 2:21 am
Forum: IBM QualityStage
Topic: Importing DataStage File in Quality Stage
Replies: 5
Views: 2397

The file is expected to be in the Data directory of your project on the server. How you get it there is up to you. Once it's there its name alone is sufficient to have QualityStage find it.
by ray.wurlod
Thu Sep 07, 2006 10:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commands for DS
Replies: 4
Views: 1598

The problem is that it's not just "a thing or two" - it's literally thousands of things. And, being a totally customizable environment, my system may have command that yours doesn't and vice versa.
by ray.wurlod
Thu Sep 07, 2006 10:03 pm
Forum: IBM QualityStage
Topic: Imcomplete Record Read from File
Replies: 6
Views: 2141

Does your file description exactly match what's in the file? Does your file have an empty line at the end?
by ray.wurlod
Thu Sep 07, 2006 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Veritas Backups on Unix... oh My!!
Replies: 2
Views: 713

There is a SUSPEND.FILES command (only in the UV account and only for Administrator login) that can be used to quiesce the Repository databases. That handles any connected developers. Running jobs, though, are a different story entirely. They *should* hang the first time they try to update their sta...