Search found 53125 matches

by ray.wurlod
Thu Jan 04, 2007 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular Expressions in the Transformer
Replies: 4
Views: 1706

To summarize, formal regular expressions can NOT be used in derivation expressions. These must be "pure BASIC" in server Transformer stages. However, if using the Derivation Substitution tool, in which you are performing global changes of derivation expressions, then formal regular expressions are a...
by ray.wurlod
Thu Jan 04, 2007 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Processing
Replies: 11
Views: 2250

I'd always advocate a separate job. Of course, you may need to detect and trap error information in the job itself, for such is the nature of these things, but simply redirect the error information into a file. The row counts and started/stopped times can be obtained subsequently. Use the times from...
by ray.wurlod
Thu Jan 04, 2007 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Format
Replies: 11
Views: 2549

Doesn't count - you already went with Oconv(). :wink:
by ray.wurlod
Thu Jan 04, 2007 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Job Sequence and Batch
Replies: 2
Views: 1877

A batch is created in Director and has the string "Batch::" prefixed to its name. A job sequence is created in Designer and uses a GUI. Both end up creating a job control routine. A job control routine can also be created manually in the job properties dialog of a server job.
by ray.wurlod
Thu Jan 04, 2007 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture duplicate reject row in the sequential file
Replies: 8
Views: 3047

By "reject" do you mean "duplicate"?
by ray.wurlod
Thu Jan 04, 2007 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what diffrence between parameters and enviromental variable
Replies: 2
Views: 810

When's the interview?

As a matter of principle we do not provide answers to interview questions.

How much research have you done in the manuals or by searching the forum?
by ray.wurlod
Thu Jan 04, 2007 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how many ways we can sheduling the jobs in datastage
Replies: 1
Views: 760

When's the interview?

As a matter of principle we do not provide answers to interview questions.

How much research have you done in the manuals or by searching the forum?
by ray.wurlod
Thu Jan 04, 2007 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Processing
Replies: 11
Views: 2250

You never want to do it IN the job.

Do it afterwards, so that you don't slow the job itself.
by ray.wurlod
Thu Jan 04, 2007 4:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node pools on SMP
Replies: 3
Views: 896

SMP is "share everything". Because every node is on the same machine, restricting a stage to operate in a particular node pool does not really affect the resources upon which it can call. Every processing node can, potentially, "see" the entire machine.
by ray.wurlod
Thu Jan 04, 2007 4:46 am
Forum: General
Topic: dynamically passing tablename
Replies: 8
Views: 4862

You don't understand DSSetUserStatus() function. It must be executed from within a job. Also, there's nothing in your code to run Job1.
by ray.wurlod
Thu Jan 04, 2007 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP using parallel job
Replies: 5
Views: 1728

Welcome aboard. :D

Using binary mode rather than ASCII mode FTP should prevent the line terminators, unless your job design is generating them.
by ray.wurlod
Thu Jan 04, 2007 12:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parallel job
Replies: 24
Views: 7040

A parallel routine (a C function) does NOT have a main() entrypoint.
by ray.wurlod
Thu Jan 04, 2007 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key
Replies: 12
Views: 3635

Not possible from a script. Only jobs have a user status area.
by ray.wurlod
Thu Jan 04, 2007 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot read the data sequential stage
Replies: 12
Views: 2881

Whta data types are specified? What null representations have been specified? Try a record schema with five VarChar fields.
by ray.wurlod
Thu Jan 04, 2007 12:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Format
Replies: 11
Views: 2549

The most efficient function to use is

Code: Select all

Convert("-", "", InLink.TheDate)
but no-one has thought to use it.