直接路径读 - direct path reads

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xxzhaobb/article/details/88110392

原文地址:https://docs.oracle.com/en/database/oracle/oracle-database/12.2/tgsql/optimizer-access-paths.html#GUID-1F4CDA9A-7419-44F6-89E0-395C92285015

8.2.1.3 Direct Path Reads

In a direct path read, the database reads buffers from disk directly into the PGA, bypassing the SGA entirely.

The following figure shows the difference between scattered and sequential reads, which store buffers in the SGA, and direct path reads.

Situations in which Oracle Database may perform direct path reads include:

  • Execution of a CREATE TABLE AS SELECT statement

  • Execution of an ALTER REBUILD or ALTER MOVE statement

  • Reads from a temporary tablespace

  • Parallel queries

  • Reads from a LOB segment

See Also:

Oracle Database Performance Tuning Guide to learn about wait events for direct path reads

end。

猜你喜欢

转载自blog.csdn.net/xxzhaobb/article/details/88110392