RCP error

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
vamsi_4a6
Participant
Posts: 95
Joined: Wed Jun 04, 2014 12:06 am

RCP error

Post by vamsi_4a6 »

I am using below schema file and source file.one to one mapping between source and target.

Job was aborted with below error:

The connector could not create table SAMP_EMP because the data type information for the column No could not be obtained.

samp_emp.txt
1,a
2,b
3,c

temp.osh
record
(
No:string[];
Name:string[];
)


sequentialfile-->transformer-->oracle connector
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Carefully read the error message again... it's not a RCP error, per se.
-craig

"You can never have too many knives" -- Logan Nine Fingers
Teej
Participant
Posts: 677
Joined: Fri Aug 08, 2003 9:26 am
Location: USA

Post by Teej »

That sounds like a defect to me. I can not think of any reason why the Oracle Connector can not interpret No as string[]. Maybe it's a limitation for the Oracle Connector in creating a table?

Does it work when you are inserting into an existing table?

-T.J.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Sounded more like 'I accidentally checked the Create Table option' to me... and yes, you would need a value for column's precision for Oracle to be able to create the table. If that's really what they wanted.
-craig

"You can never have too many knives" -- Logan Nine Fingers
Post Reply