博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
05 Oracle process
阅读量:6221 次
发布时间:2019-06-21

本文共 2048 字,大约阅读时间需要 6 分钟。

本章提要

----------------------------------------------
所有的 process 都是在 PGA 内(memory)
server process: 与 client 连接有关(在PGA中)
bakground process: 作维护工作(在PGA中)
slave process: 很像background process, 但是他们做额外的工作帮助server process或background process(在PGA中)
----------------------------------------------
1. server process
    它是 client session 的一个代理, They are the processes that ultimately receive and act on the SQL
    statements our applications send to the database.
    Both dedicated and shared server processes have the same job: they process all of the SQL you give
    to them.( 都是要做将client提交的sql语句解析, 并将它放到shared pool中 等 )这个进程负荷很高,占用CPU也
    很多.
connection VS session: 一个connection只是一个物理的连接(client 进程 与 server 端的某个进程), 网络连接
    在一个connection 上可以有0~N个独立的session, 另外, 借助于其他媒介, session也可以没有connection,比如
    connection pooling 连接池, A session is a logical entity that exists in the instance, It is your
    session state, or a collection of data structures in memory that represents your unique session.
    查询的结果集会返回给你这个session,
AUTOTRACE: When we enable AUTOTRACE in SQL*Plus, SQL*Plus will perform the following actions when we
    execute DML operations (INSERT, UPDATE, DELETE, SELECT, and MERGE):
    1) It will create a new session using the current connection, if the secondary session does not
       already exist.
    2) It will ask this new session to query the V$SESSTAT view to remember the initial statistics values
        for the session in which we will run the DML.
    3) It will run the DML operation in the original session. (执行dml在之前的session)
    4) Upon completion of that DML statement, SQL*Plus will request the other session to query V$SESSTAT again
        and produce the report displayed previously showing the difference in the statistics for the session
        that executed the DML.
2. background process
    instance 是由 SGA 和 background process 组成.
   
    picture: 5-4
    中心进程介绍:
    1) pmon, 负责在出现异常中断连接之后完成清理. 另外, 它还向 oracle tns 监听器注册这个实例(动态注册)
    2) smon, 完成系统级任务, 清理临时空间, 合并空闲空间 等
    3) reco, 分布式数据库恢复
    4) ckpt, 检查点进程
    5) dbwn, 数据库写入器
    6) lgrw, 日志写入器
    7) arch, 归档进程
    8) diag, 诊断进程
    9) fbda, 闪回数据归档进程
    10) dbrm, 数据库资源管理进程
    11) gen0, 通用任务进程
    

转载地址:http://heeja.baihongyu.com/

你可能感兴趣的文章
关于JS
查看>>
你得学会并且学得会的Socket编程基础知识(转)
查看>>
[Python]安装完pip、pygame后,仍然import pygame报错
查看>>
吃鸡蛋引发的血案,详解内存中的字节序
查看>>
【1139】数据结构上机测试2-2:单链表操作B (逆序建表+重复元素删除)
查看>>
C++ 内存管理之三(栈和堆)
查看>>
Windows7 64bit 安装python3.3 & cx_Freeze-4.3.2
查看>>
手写web服务器
查看>>
也谈 Python 的中文编码处理
查看>>
[LeetCode] LRU Cache
查看>>
OpenStack若干概念
查看>>
AttributeToElement
查看>>
php使用循环创建任意长度数组
查看>>
站立会议03
查看>>
POJ3068:"Shortest" pair of paths——题解
查看>>
上传本地文件到github(码云)上(小乌龟方式,sourcetree方式)
查看>>
微软Holographic将更名为Windows Mixed Reality
查看>>
豪情哥的忠告 能做到这一条就够用了
查看>>
精彩的javascript对象和数组混合相加
查看>>
Markdown介绍及工具推荐
查看>>