Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-12840: cannot access a remote table after parallel/insert direct load t

609621Dec 8 2009 — edited Dec 8 2009
insert /*+ append parallel nologging */ into temp_tbl select d_duration,cduration from tstrtw i , medt_faml f
where tdate >= '01-sep-09' and tdate <'01-oct-09'
and ttype = '001'
and subsequip_tno = i.tno
and f.b_tno = f.b_tno
and equipid ='BESTFR'


when am running this query : am getting the error :

ERROR at line 1:
ORA-12840: cannot access a remote table after parallel/insert direct load txn



I checked the following :


a) using the query ,
select t.start_time,s.sid,s.serial#,s.username,s.status,s.schemaname,
s.osuser,s.process,s.machine,s.terminal,s.program,s.module,to_char(s.logon_time,'DD/MON/YY HH24:MI:SS') logon_time
from v$transaction t, v$session s
where s.saddr = t.ses_addr
order by start_time;

there are no dml's going on this tables tstrtw i and medt_faml f


b) checked notes [ID 49056.1] and [ID 292442.1].


helpless.. any idea ?



table tstrtw is a remote table


TIA


Kai
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 5 2010
Added on Dec 8 2009
5 comments
2,056 views