Page 1 of 1

main_program: Fatal Error: Not a v1.1 type: decimal[10,0]

Posted: Tue Nov 24, 2009 5:18 am
by dspradeep
I am getting this error while running my job.

My Job Design is

ESS-->xml-->trans--> Oraclestage

Oracle stage field info
id --> Number(8)
name--> varchar(50)

while import this table it's coming like

id --> decimal(38,10)
name-->varchar(50)

Note : I did not change the metadata and this job is designed last week and upto yesterday it's working fine but today i am getting this error

Code: Select all

main_program: Fatal Error: Not a v1.1 type: decimal[10,0]
i don't know why i am getting this error. I have tried with yesterday file also but i am getting same error. After that i have changed decimal datatype into integer but again i am getting same error.

pls help me

Posted: Tue Nov 24, 2009 6:33 am
by venky
change APT_AUTO_TRANSPORT_BLOCK_SIZE to false and try to run the job

Re: main_program: Fatal Error: Not a v1.1 type: decimal[10,0

Posted: Tue Nov 24, 2009 6:41 am
by chulett
dspradeep wrote:Note : I did not change the metadata and this job is designed last week and upto yesterday it's working fine but today i am getting this error
What changed between then and now? The job? The Oracle table? Something obviously did, the problem is going to be figuring out what. I would suspect the latter.

Posted: Tue Nov 24, 2009 4:01 pm
by ray.wurlod
venky wrote:change APT_AUTO_TRANSPORT_BLOCK_SIZE to false and try to run the job
Why do you give this advice? Transport blocks only apply to fixed-width records, and is given in bytes. In most cases it's calculated using a formula that involves APT_MIN_TRANSPORT_BLOCK_SIZE, APT_MAX_TRANSPORT_BLOCK_SIZE as well as record size and latency.