Parallel refresh of materialized viev
I have a matrialized view that I would like to do a complete refresh on in parallel. I have a parallel hint on the select-statement and the mv is created with parallel. When I create the mv with build immediate, both the select and load happens in parallel. When I create with build deferred and then do a refresh, then only the select is done in parallel. I have tried 'alter session enable parallel dml' and even 'alter session force parallel dml parallel 8' and also using the parallelism-parameter on the dbms_Mview.refresh call. No luck, the insert is done serially.