2

当我执行这个查询

Select * 
  from remote_tabe@my_db_Link 
 where Update_Date >= to_Date( sysdate - 1/24 )

它在 30 秒内返回大约 4000 行

但是当我执行插入语句时

Insert into my_table 
    select * 
      from remote_tabe@my_db_Link 
     where Update_Date >= to_Date( sysdate - 1/24 )

需要3个多小时!有人可以帮忙解决这个问题吗?

4

1 回答 1

1

两个查询的执行计划可能不同。你检查过,使用 DBMS_Xplan 吗?

于 2012-05-17T09:48:14.393 回答