Reputation: 9961
Which directive INSERT
or INSERT /*+ direct */
has a smallest insertion time? Why?
Upvotes: 1
Views: 1722
Reputation: 5940
When you use the DIRECT hint the INSERT statement will by-pass the Write Optimised Store (WOS - in memory) and write directly to disc into the Read Optimised Store (ROS).
So...
Upvotes: 6