When i execute this query
Select *
from remote_tabe@my_db_Link
where Update_Date >= to_Date( sysdate - 1/24 )
it returns around 4000 rows by 30 secs
but when i execute the insert statement
Insert into my_table
select *
from remote_tabe@my_db_Link
where Update_Date >= to_Date( sysdate - 1/24 )
it takes more than 3 hours! Can anybody please help in solving this issue?