Search found 5 matches

by akhelif
Tue Jan 03, 2006 4:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: C Stage PlugIn function "Run" required
Replies: 3
Views: 1692

Same error with XML_Output stage

Hi all, and happy new year !

I just wanted to see how xml stages worked on DS.

The job is really simple : Seq File > Transformer > XML_Output

The job produces the same warning : C Stage PlugIn function "Run" required

and the XML output file is not even created.

Help ?
by akhelif
Tue Oct 18, 2005 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditionnal update
Replies: 5
Views: 2041

Re: Conditionnal update

UPDATE TAB SET CASE Type = 'NAT' then NAT=:2 Type = 'REG' then REG=:2 end WHERE Key=:1 You have to update all columns, they need to be bound because of the laws of SQL. You can't be switch columns in your set, you have to have each column defined. You can always update a column with its existing va...
by akhelif
Tue Oct 18, 2005 4:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditionnal update
Replies: 5
Views: 2041

Conditionnal update

Hi guys, My source file format is : Key;Data;Type My target table format is : Key;NAT or Key;REG (NAT and REG having the same format) Is it possible depending on the Data Type to update either of the columns or the other : I am using OCI stage, I tried smthg like that but it didn't work : UPDATE TAB...
by akhelif
Mon Sep 19, 2005 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incorrect Hexadecimal-ASCII conversion for accentuated chars
Replies: 1
Views: 2893

ArndW wrote:akhelif,

can you confirm that the e-egu accented character really is the character you are expecting by outputting the SEQ(Arg1) and looking in the ASCII table for it?
yes
by akhelif
Fri Aug 19, 2005 3:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to code a while Loop
Replies: 2
Views: 1339

How to code a while Loop

Hi experts, I have to launch a sequence of jobs to treat couples of of doubled blooms. Sometimes I have an tuple so I have to launch many "waves" to get the job done. The problem is, I have a job control templat that only launches a set of jobs and I am not allowed to change it. So the job...