Both "db file sequential read" and "db file scattered read" events signify time waited for I/O read requests to complete. Time is reported in 100's of a second for Oracle 8i releases and below, and 1000's of a second for Oracle 9i and above. Most people confuse these events with each other as they think of how data is read from disk. Instead they should think of how data is read into the SGA buffer cache or user PGA memory.
db file sequential read:
A sequential read operation reads data into contiguous memory (usually a single-block read with p3=1, but can be multiple blocks). Single block I/Os are usually the result of using indexes. This event is also used for rebuilding the controlfile and reading datafile headers (P2=1). In general, this event is indicative of disk contention on index reads.
db file scattered read:
Similar to db file sequential reads, except that the session is reading multiple data blocks and scatters them into different discontinuous buffers in the SGA. This statistic is NORMALLY indicating disk contention on full table scans. Rarely, data from full table scans could be fitted into a contiguous buffer area, these waits would then show up as sequential reads instead of scattered reads. However, scattered read will never read just one block (p3 is always >= 2).
The following query shows average wait time for sequential versus
scattered reads:
转自:http://www.orafaq.com/node/1
分享到:
相关推荐
db file sequential read(ms) log file parallel write(ms) log file sync(ms) db file scattered read(ms) #IO WorkLoad Oracle IOPS Oracle MBPS db file sequential read db file scattered read log file ...
### 并发程序验证知识点详解 #### 一、并发程序验证的重要性 在现代软件开发过程中,随着多核处理器和分布式系统的普及,并发编程已经成为一种必不可少的技术。然而,并发程序的设计和实现异常复杂,容易出现诸如...
时间序列分析——The main focus of this book is on a systematic development of the theory of sequential hypothesis testing (Part I) and changepoint detection (Part II). In Part III, we briefly describe...
Each database is stored as a single file containing both Pragma & Data Writes cause file locking and are always sequential and blocking Reads can be multi-tasked Designed for local use NOT Client-...
DataStage Sequential File Stage是ETL(提取、转换、加载)过程中用于处理文本文件的一个关键组件。这个stage专门设计用于读取和写入简单的文本文件,它具有灵活性和可配置性,能够适应各种数据处理需求。以下是对...
1. 算法的分类:文档标题“Algorithms Sequential and Parallel: A Unified Approach”表明这本书主要探讨了算法的两种主要分类:顺序算法(Sequential Algorithms)和并行算法(Parallel Algorithms)。顺序算法是...
"SequentialFile"这个名称暗示了我们即将探讨的是顺序文件,这是数据存储的一种基本形式。在计算机科学中,数据结构是组织和管理数据的方式,而算法则是解决问题或执行特定任务的步骤。 顺序文件,顾名思义,是指...
- **问题描述**:给定一组短序列(reads),重构原始的长序列。 - **挑战**:处理海量数据、解决重复序列等问题。 #### 4.4 理解问题结构 - **分析**:基因测序问题涉及大量数据处理和复杂的模式匹配。 - **策略**...
1. 书籍主题与内容:书名《Algorithms Sequential and Parallel A Unified Approach》以及其副标题表明了这是一本关于算法的书,重点讲解了顺序算法和并行算法。这本书第二版于2005年出版,由Russ Miller和Laurence ...
常见的非空闲等待事件包括 db file scattered read、db file sequential read、buffer busy waits、free buffer waits、enqueue、latch free、log file parallel write、log file sync 等。 1. db file scattered ...
### 顺序一致性(Sequential Consistency, SC)与总存储顺序(Total Store Order, TSO) 在探讨并发编程和多核架构中的数据共享机制时,内存一致性模型是理解系统行为的关键概念之一。本文将深入探讨两种重要的内存...
标题《Algorithms Sequential and Parallel - A Unified Approach, 2rd Edition》和描述中提到了一些关键的IT知识领域和主题,包括算法、顺序与并行计算以及统一的方法论。以下是对标题和描述中提到的知识点的详细...
Since sequential information plays an ...art sequential recommendation methods and context-aware recommendation methods on two public datasets, i.e., the Taobao dataset and the Movielens-1M dataset.
"Oracle等待事件说明一"主要关注了几个关键的等待事件,包括"buffer busy waits"、"db file parallel write"、"db file single write"、"db file scattered read"、"db file sequential read"以及"direct path write...
根据提供的文件内容,以下是对《Algorithm Design: Parallel and Sequential》一书的知识点概述: ### 标题分析 该文件标题为 "Algorithm Design Parallel and Sequential 2017.9.pdf",直接指出了书的名称以及出版...
limitations: They are not designed for sequential analysis of incomplete trajectories or online learning based on an incrementally updated training set. Moreover, they typically involve tuning of many...
一些常见的非空闲等待事件有 db file scattered read、db file sequential read、buffer busy waits、free buffer waits、enqueue、latch free、log file parallel write、log file sync 等。 db file scattered ...
5. **等待事件**(Timed Events):db file scattered read、latch free、db file sequential read等是等待时间最多的事件。db file scattered read和db file sequential read涉及到I/O操作,可能需要优化表空间的I/...