Search found 6 matches

by kattineni
Wed Sep 15, 2010 12:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to pass same column value to two params in STP stage
Replies: 4
Views: 2136

Craig, Thank you for the hint. By default it is giving the syntax as below in the STP stage. BEGIN :3 := exch_test(:1, :2); END; It had the Generate Procedure Call tab checked which is by default. When I uncheck it and modify the syntax as below it worked like a charm. BEGIN :3 := exch_test(:1, :1);...
by kattineni
Tue Sep 14, 2010 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to pass same column value to two params in STP stage
Replies: 4
Views: 2136

Hi Craig, When I split the Input column with a different name and pass it to the STP stage, the function works fine(So essentially I would be duplicating the input column with a different name). Since the column names are different the function in the STP stage is accepting the parameters. The issue...
by kattineni
Tue Sep 14, 2010 12:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to pass same column value to two params in STP stage
Replies: 4
Views: 2136

Unable to pass same column value to two params in STP stage

Hi All, We are using a STP stage to call a pl/sql function which requires multiple input parameters. My requirement is to pass same input column to two of the parameters in the function. But when I map same column in the STP stage to those two parameters the job fails with error message "Stored...
by kattineni
Fri Sep 17, 2004 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: conversion of data from ascii to ebcdic
Replies: 9
Views: 6087

Hi all,
Thanks for your replies.Yes as you suggest it is going to be very difficult in dealing with the packed decimal through datastage alone.I tried different options in using datastage sdk routine transformations as Mike suggested but not much of the result could be seen.
Thank you all
vijay
by kattineni
Tue Sep 14, 2004 4:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: conversion of data from ascii to ebcdic
Replies: 9
Views: 6087

Hi , i am just transforming the data from ascii to ebcdic formats using the ebcdic conversion dsfunction.other than that i am not using anyother specific routines.the conversion looks ok for all the char,varchar2 fields except for the packed decimal fields.The datatype for these fields is numeric.Fo...
by kattineni
Tue Sep 14, 2004 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: conversion of data from ascii to ebcdic
Replies: 9
Views: 6087

conversion of data from ascii to ebcdic

Hi ALL, I am converting data from ascii format to ebcdic format.My source is oracle table and i am loading the ebcdic data into a sequential file so that the file can be ftp'ed to AS/400 system.The problem is that for some of the fields in the target AS/400 the datatypes are packed.So when the file ...