A question about ANSI JOIN
I'm facing a strange behaviour with a sql using ansi join and dblink.
A complex query joining (ANSI) remote tables is broken into multiple small queries on the remote database.
If I move from ANSI to Natural join the query is executed once on the remote database without having to be broken into small queries.
This leads to better performance with Natural join but I'm not sure saying that Natural Joins are better than ANSI Joins.