Hi,
We are trying to load data from Source Oracle DB to Target Oracle DB using following KM.
LKM : LKM SQL to SQL
IKM : IKM SQL Control Append
In Target Oracle DB we have only 'Insert Privilege' so that we could insert records into specific table.
When we try to run the ODI interface we below error -
ODI-1228: Task Move A to B fails on the target ORACLE connection TARGET_DATA_SERVER.
Caused By: java.sql.SQLSyntaxErrorException: ORA-01031: insufficient privileges.
When I check the Operator and session log, I noticed that LKM SQL to SQL try to Create work table in the target side somthing like ..
create table xxebs.C$_Target_Table
( Name VARCHAR2(100)
)
I believe since due to insufficient privilege it's unable to create work table and hence failing.
Do we have any workaround to handle this scenario?
Thanks,
Ab