zoukankan      html  css  js  c++  java
  • Oracle 进程介绍

    数据写进程(dbwr):负责将更改的数据从数据库缓冲区高速缓存写入数据文件 
      日志写进程(lgwr):将重做日志缓冲区中的更改写入在线重做日志文件 
      系统监控(smon)  :检查数据库的一致性如有必要还会在数据库打开时启动数据库的恢复 
      进程监控(pmon)  :负责在一个Oracle 进程失败时清理资源 
      检查点进程(ckpt):负责在每当缓冲区高速缓存中的更改永久地记录在数据库中时,更新控制文件和数据文件中的数据库状态信息。 
      归档进程(arcn)  :在每次日志切换时把已满的日志组进行备份或归档 
      作业调度器(cjq)  :负责将调度与执行系统中已定义好的job,完成一些预定义的工作.
    恢复进程(reco)  :保证分布式事务的一致性,在分布式事务中,要么同时commit,要么同时rollback;
    
    读数据文件:读取数据到buffer cache中,是由服务器进程server process来完成的
    
    db file scattered read
    This event signifies that the user process is reading buffers into the SGA buffer cache ....
    db file sequential read
    This event signifies that the user process is reading a buffer into the SGA buffer cache ...
    
    这里都提到是the user process ,其实就是server process

  • 相关阅读:
    Lintcode: Delete Digits
    Lintcode: Digit Counts
    Lintcode: Compare Strings
    Lintcode: First Position of Target (Binary Search)
    Lintcode: Binary Representation
    Lintcode: Backpack II
    Lintcode: Backpack
    Lintcode: A+B problem
    Summary: Lowest Common Ancestor in a Binary Tree & Shortest Path In a Binary Tree
    Summary: Prime
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13352103.html
Copyright © 2011-2022 走看看