zoukankan      html  css  js  c++  java
  • direct path read temp等待事件

    Often related to sorting operations, check to see if occurring primarily in temp tablespaces. Solutions 1) Reading from temp tablespaces If the database parameter workarea_size_policy = AUTO: Increase the database parameter pga_aggregate_target. Otherwise: Increase the database parameter sort_area_size. Another possible solution is to cache the temp datafile at the O/S or Storage system level. 2) Reading application data Ensure database parameter, DISK_ASYNC_IO is TRUE Ensure no disks are I/O bound. Ensure the OS asynchronous I/O is configured correctly. During Direct Path operations the data is asynchronously read from the database files. At some point the session needs to make sure that all outstanding asynchronous I/O have been completed to disk. This can also happen if, during a direct read, no more slots are available to store outstanding load requests (a load request could consist of multiple I/Os). Direct path reads are generally used by Oracle when reading directly into PGA memory (as opposed to into the buffer cache). If asynchronous I/O is supported (and in use) then Oracle can submit I/O requests and continue processing. It can then pick up the results of the I/O request later and will wait on "direct path read" until the required I/O completes.
  • 相关阅读:
    php method_exists( $object , string $method_name )
    php伪类型 (mixed)
    6.6-2-数组与数据结构(用数组及其函数实现堆栈等数据结构)
    6.6-1-php数组相关(2)
    2017.6.5-2-php数组相关(1)
    2017.6.5-1-php函数应用及流程控制
    CodePage
    bat批处理教程
    pip安装及源
    CentOS安装Python3
  • 原文地址:https://www.cnblogs.com/macleanoracle/p/2967891.html
Copyright © 2011-2022 走看看