zoukankan      html  css  js  c++  java
  • Components of an instance

    An Oracle instance
    Background Processes for an Instance
    Database Writer (DBWR)
    Log Writer (LGWR)
    System Monitor (SMON)
    Process Monitor (PMON)
    Archiver (ARC)
    Checkpoint (CKPT)
    Recover (RECO)

    Processes or Threads?

    With all this talk about processes, you may be wondering whether Oracle actually uses threads or processes in the underlying operating system to implement these services.

    For simplicity, throughout this book we use the term process generically to indicate a function that Oracle performs, such as DBWR or LGWR. Oracle on Windows uses one operating system process per instance; thus each "Oracle process" is actually a thread within the one Oracle process. Oracle on Unix uses a process-based architecture. All of the "processes" are actual operating system processes, not threads. Thus, on Unix DBWR, LGWR, and so on are specific operating system processes, while on Windows they are threads within a single process.

    There are some exceptions, however. For instance, the shared server uses real threads on Windows and simulated threads on Unix.


  • 相关阅读:
    开发中的报错问题
    vue2.0入门
    nodejs的一些基操
    git
    es6模块化规范
    js面向对象的笼统介绍
    this指向问题(改变它的指向)
    js面向对象杂谈
    原生js贪吃蛇
    bootstrap基础自我总结
  • 原文地址:https://www.cnblogs.com/wucg/p/2103172.html
Copyright © 2011-2022 走看看