Search found 45 matches

by kbsuryadev
Tue Mar 02, 2010 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when reading table using ORACLE Connector in 8.1
Replies: 2
Views: 4981

The issue with the above error in the job is related to Oracle connector issue, Contacted IBM reagarding this issue and installed the patch. I ran the job and the job finished successfully.

PROBLEM: JR35357 The latest patch for Oracle connector.
by kbsuryadev
Wed Feb 17, 2010 11:49 am
Forum: General
Topic: Check if a job has been compiled?
Replies: 4
Views: 2275

How about checking in the Director.
by kbsuryadev
Mon Feb 15, 2010 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Number Convertion ( User defined SQL ) problem
Replies: 19
Views: 8759

thanks Kunal ....I am glad you found the solution.
by kbsuryadev
Fri Feb 12, 2010 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Number Convertion ( User defined SQL ) problem
Replies: 19
Views: 8759

source ACD_ID( NULL) TARGET ACD_ID( NULL)

In datastage it should say YES on both source and target ................. not NO
by kbsuryadev
Fri Feb 12, 2010 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Number Convertion ( User defined SQL ) problem
Replies: 19
Views: 8759

"ACT_ID" to field "ACT_ID": Implicit conversion from source type "decimal[38,10]" to result type "string[12]": Not enough room in string for decimal[38,10]. >##E TFSR 000019 10:24:43(002) <main_program> Could not check all operators because of previous error(...
by kbsuryadev
Fri Feb 12, 2010 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Number Convertion ( User defined SQL ) problem
Replies: 19
Views: 8759

error says you have a null in the source. and target is not nullable.

source ACT_ID(NULL) Target ACT_ID(Not Null)
by kbsuryadev
Fri Feb 12, 2010 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Number Convertion ( User defined SQL ) problem
Replies: 19
Views: 8759

It seems you have decimal(38,10) in Datastage though your
source is char(12)

also you have a null in the source but your target appers to be NOT NULL , so you have to make it null
check datatypes you defined in the source stage and target stage in datastage.
by kbsuryadev
Fri Feb 12, 2010 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Number Convertion ( User defined SQL ) problem
Replies: 19
Views: 8759

try using Varchar in the source, it looks like you specified your source as decimal and target is varchar.... try changing the source to varchar and target as varchar.
by kbsuryadev
Fri Feb 12, 2010 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when reading table using ORACLE Connector in 8.1
Replies: 2
Views: 4981

has any one come across this error .?


Thanks.
by kbsuryadev
Thu Feb 11, 2010 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when reading table using ORACLE Connector in 8.1
Replies: 2
Views: 4981

Error when reading table using ORACLE Connector in 8.1

Screen shot of the job http://picasaweb.google.com/kbsuryadev/OracleConnector_ERROR# Oracle connector: partioned reads ( ENABLED) on table a partioned read method: Rowid hash Custom sql: joining 2 tables( one of which is temp table) transformer: No transformations. target: dataset and creating a tab...
by kbsuryadev
Tue Feb 09, 2010 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype problem while reading
Replies: 3
Views: 1505

it says your target column is not nullable, so make it null and try
by kbsuryadev
Fri Feb 05, 2010 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Searching for %Value% in a lookup table
Replies: 8
Views: 4558

source>>>>>>trn( in transformer UPCASE(INDEX(Inputcolumn,'string',1))<>0 Then _________ else ______________ ) and then do a look up on the source row.

use upcase depending on your requirement.
by kbsuryadev
Tue Feb 02, 2010 11:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Searching for %Value% in a lookup table
Replies: 8
Views: 4558

Check the INDEX function in DataStage
by kbsuryadev
Thu Jan 28, 2010 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle plugin not reading parallel
Replies: 15
Views: 9276

You can read a non partioned table in parallel using Oracle Connector Stage, by chosing the option enable parallel read- option and chosing the partioned read method -option So when you chose Oracle connector stage it will read the oracle table in parallel depending on your node configuration. Corre...