当我执行这个查询
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个多小时!有人可以帮忙解决这个问题吗?