Is there any way (probably a hint) to specify Oracle to create a temp table from subquery factoring (with ... as ) clause?
So, if I have a query
with t1 as (select ...)
select ...
how can I make Oracle to generate plan which builds a temp table for t1 (and not uses t1 as inline view)?