Search found 53125 matches

by ray.wurlod
Tue Jul 10, 2007 12:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Value for Integer
Replies: 5
Views: 1412

Code: Select all

NonNullField : int32 = handle_null(InputField, 42)


Forty two is the ultimate answer to life, the universe and everything.
by ray.wurlod
Tue Jul 10, 2007 12:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Table count to a Parameter
Replies: 4
Views: 1188

Or, to extend Kim's suggestion, use the job's user status area. There's no point using a parallel job to process just one row, and it's much easier to use a server job's user status area. The contents of the user status area are available downstream in the job sequence as an Activity variable called...
by ray.wurlod
Tue Jul 10, 2007 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning - Aggregator Stage
Replies: 6
Views: 2852

Not all warnings in parallel job are bad; some - like these - are alerts. The Aggregator stage performs its calculations so as to generate dfloat results; this eliminates the possibility of arithmetic overflows (at least in our lifetimes). When you specify a different data type in the output columns...
by ray.wurlod
Tue Jul 10, 2007 12:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: attaching MORE THAN ONE link to jOB ACTIVITY
Replies: 5
Views: 1505

The job sequence allows as many outputs as you wish from a job activity (there's probably some upper limit like 127; I've never bothered to check). What message is produced when you try? Are you creating a link from the Job activity to an activity that already has one input but does not support more...
by ray.wurlod
Tue Jul 10, 2007 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Read Error
Replies: 12
Views: 3112

Check the output link execution order. Make sure that the rejects link is being processed last. I am waiting for some one hand.,, This is an all-volunteer site. If you post on a weekend, you can not expect anyone to respond on a weekend. People post as and when they can, and tend not to if they have...
by ray.wurlod
Tue Jul 10, 2007 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability of the jobs in Server sequencer
Replies: 7
Views: 3197

Do you want restart within a job ? That is an entirely different question. Consider the following job sequence. JobA ----> JobB ----> JobC ----> JobD Job sequence is executed. JobA finishes successfully and gets a checkpoint. JobB finishes successfully and gets a checkpoint. JobC fails. When the job...
by ray.wurlod
Tue Jul 10, 2007 11:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSsend Mail teser routine
Replies: 2
Views: 975

It appears that the SMTP client does not recognize the sender's email address. Can you use the mail command from the UNIX prompt? If so what is the identity of the sender? You could use that. Also find out how other, more experienced, developers at Target code the sending of email via Notification a...
by ray.wurlod
Tue Jul 10, 2007 11:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Account is Locked
Replies: 6
Views: 3054

:oops:
My bad, insufficient attention to detail. Shall have to plead jet lag. I read it as "DataStage account locked" (sometimes displays as "account locked by Administrator").
by ray.wurlod
Tue Jul 10, 2007 11:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: In Oracle Stage i coded as update or insert but its not inse
Replies: 8
Views: 2035

Check that you have both UPDATE and INSERT table privileges. Though if you do not I would expect warnings to have been logged.

Were there any? You didn't say.
by ray.wurlod
Tue Jul 10, 2007 11:32 am
Forum: General
Topic: Limiting access to only view the job log.
Replies: 10
Views: 2916

Add this user to a group to which the DataStage Operator role only is assigned, and to no group to which the DataStage Developer role is assigned for this project. Check the "operator can view full log" when configuring DataStage roles for this project.
by ray.wurlod
Tue Jul 10, 2007 11:27 am
Forum: General
Topic: How to send SMS about the status of sequence job?
Replies: 6
Views: 2505

It may be that Sprint does not extend to South Africa, but most mobile phone providers have a similar service.
by ray.wurlod
Tue Jul 10, 2007 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Condition in Lookup Stage
Replies: 3
Views: 1634

Upgrade to version 8.0. Then you get range lookups.
by ray.wurlod
Tue Jul 10, 2007 5:39 am
Forum: IBM QualityStage
Topic: User Overides do not work in standardisation stage
Replies: 1
Views: 1173

Works OK in version 7.5. Maybe they've introduced a bug? Check with your support provider. Meanwhile, perhaps you could use a character string override rather than a pattern override?
by ray.wurlod
Tue Jul 10, 2007 5:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Account is Locked
Replies: 6
Views: 3054

Restart DataStage on the server.
by ray.wurlod
Tue Jul 10, 2007 5:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Hash file from within a DS routine
Replies: 3
Views: 1140

You can also use the Trans() function - also in the DataStage BASIC manual. This may be easier if there is only a single record that needs to be accessed by the routine.