|
|
Re: Materialized View Refresh Performance [message #359908 is a reply to message #359638] |
Tue, 18 November 2008 13:30 |
coleing
Messages: 213 Registered: February 2008
|
Senior Member |
|
|
If you need a complete refresh each time (for example the detail table moves more than 10% of its records in your refresh period), then you can investigate the following
Depending on your needs (Read the manual on these options).
You can
1. add parallel (hardware supporting), partition the mview and add parallel, create the mview with nologging.
2. when you refresh, you can have the atomic_refresh=false option which does a truncate instead of a delete on the refresh. again read the manual to see if this fits your needs.
|
|
|