If I have two queries, which I will call horrible_query_1 and ugly_query_2, and I want to perform the following two minus operations on them:
horrible_query_1
ugly_query_2
Have you tried using RESULT_CACHE hint in your queries? Also, you could
RESULT_CACHE
ALTER SESSION SET RESULT_CACHE_MODE=FORCE
and see if it helps.