I need to create JOB in Pentaho Kettle to automate copying data from one database to another database. I am facing problem while copying data from table containing a long raw column. I have tried below listed things:
I have used copy table wizard.But getting error "ORA-01461: can bind a LONG value only for insert into a LONG column" while copy for table containg LONG RAW column.Tables in both databases are exactly same.
I have tried creating a oracle function to use pl/sql to insert long raw data by binding the long raw column. I am making call to oracle function in "Execute sql script" step in PENTAHO. select function_name(prameter1,parameter2,long raw column,.....) from dual. But getting error "String literal too long".
Any suggestion how to do copy long raw data having size around 89330 bytes from one table to another.