Hello,
I am trying to write data into Oracle and I found following error. Well, its just 255 records I must say.
Error: Output Data (138): DataWrap2OCI:: SendBatch: ORA-24801: illegal parameter value in OCI lob function
Appreciate any support. TIA!
Solved! Go to Solution.
Is it possible that you are writing a variable with a data type of V_WString with the default size of 1,073,741,823 bytes?
I would change that to 254 bytes (or something size appropriate) and if the values don't include unicode characters, switch it to v_string.
Cheers,
Mark
I tried as you suggested but in vain. It didnt help.
I was able to figure out the solution for this. This error comes up when we are trying to load empty cells of data into Oracle table. Instead, we can use a Multi-Field formula tool and have this formula to replace null with 0.
IIF(IsNull([_CurrentField_]),0,[_CurrentField_])
Once replaced, it should be good to go and load into table without any issues.
Thank you for the reply.
Will this option too.
However for now, I could get past this issue with manually mapping each source column to the target column in the 'Select' tool.
Best