I wanted to know if there is a way to optmimize a minus between 2 very large tables (10 to 100 million records), updated more than once a day. I already tried indexing them just to try but as I expected I got worse timings. Are there any other operations that can replace this minus (I tried a not exists but again worse results)?
Edit:
insert into I$_F_TABLE
select *
from TW_F_TABLE
minus
select *
from F_TABLE;
This is an ugly example, I'm sorry for the indentation and not writing a proper one.