Search found 53125 matches

by ray.wurlod
Thu Jul 14, 2005 8:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential stage and wildcards in the Filter
Replies: 8
Views: 2216

My sweet apple-cheek'd mother taught me to darn SOX. :P
by ray.wurlod
Thu Jul 14, 2005 8:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Target: When checking operator:Sequential....
Replies: 3
Views: 1180

It's an informational message indicating that collection of data from all processing nodes must occur because you're performing an operation (export to a sequential file) that can only happen sequentially.
by ray.wurlod
Thu Jul 14, 2005 8:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mq stage
Replies: 3
Views: 1232

Welcome aboard! :D You need to construct the logic of detecting success or failure (you did not post any specifications for this). If failure is that of the overall job run you need to detect this in a controlling (parent) job or job sequence. Once you've detected success or failure, direct control ...
by ray.wurlod
Thu Jul 14, 2005 8:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue when trying to check a configuration file
Replies: 7
Views: 2026

Why Is It So?

DS PX uses MKS Toolkit, and expects to see /tmp

This is presented by MKS Toolkit from \tmp on the currently logged Windows drive.
by ray.wurlod
Thu Jul 14, 2005 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deadlock situation
Replies: 4
Views: 967

Not really. Deadlocks are avoided by disciplined programming practices.
by ray.wurlod
Thu Jul 14, 2005 6:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check the database availability
Replies: 5
Views: 1857

Assuming version 7.5 you have StartLoop and EndLoop activities. Otherwise you can embed the loop in a job control routine, in much the way that the ClockMaster job control routine worked at a site where you worked earlier. Conceptually: Loop GoSub CheckWhetherShutdownRequested While Not(Shutdown...
by ray.wurlod
Thu Jul 14, 2005 6:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to copy a file from a different machine on a network to.
Replies: 5
Views: 1073

Provided the other machine is visible and your authentication is OK, then a DOS-level COPY command as you suggested will be fine. The before-job subroutine is executed before anything else happens. Before any stage is opened, before any connection to a database is opened, before any file is opened, ...
by ray.wurlod
Thu Jul 14, 2005 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File type
Replies: 5
Views: 1117

2 - 18 or 30
by ray.wurlod
Thu Jul 14, 2005 5:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pivot stage problem
Replies: 3
Views: 763

You need to install the Pivot stage using the Package Installer on the server. You can also re-install the server, selecting the Pivot stage as one of the stage types to be installed in each project.
by ray.wurlod
Thu Jul 14, 2005 5:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 9Million rec in Oracle tbl, Update or Insert 7rows/sec!
Replies: 8
Views: 2081

Assuming they're all inserts, use a bulk loader. SQL*Load (command is sqlldr) for Oracle.
by ray.wurlod
Thu Jul 14, 2005 5:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 17
Views: 3402

A custom condition plus an annotation is perfectly legible, and satisfies the "law of least astonishment" (provided that the annotation text is apt).
by ray.wurlod
Thu Jul 14, 2005 5:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check the database availability
Replies: 5
Views: 1857

Why not just create a job sequence (or job control code) that runs some trivial job in VALIDATE mode? The trivial job must, of course, access the database in question. Test its exit status to determine whether to proceed.
by ray.wurlod
Thu Jul 14, 2005 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential stage and wildcards in the Filter
Replies: 8
Views: 2216

Re: Sequential stage and wildcards in the Filter

chulett wrote:Does the darn Filter command in the Sequential stage not support wildcards?

I am not aware of any darn command, therefore cannot advise how one might use it as a Filter command in a Sequential File stage. Is the darn command UNIX or DOS, or is it only used for SOX?
by ray.wurlod
Thu Jul 14, 2005 5:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Base64 Encoding
Replies: 27
Views: 10449

Just out of curiosity, there is a Perl category in the Routines branch in version 7.5.1. Would this task be able to be accomplished in Perl?
by ray.wurlod
Thu Jul 14, 2005 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transform a record into columns
Replies: 3
Views: 828

If there are always three sub-records you can use an intermediate sequential file. Write one column with a line terminator following each logical record. Imagine svLF is a stage variable containing the line character. Then the single output column into the sequential file stage (no delimiter, no quo...