Oracle体系结构及备份(十六)——bg-ckpt
一 什么是CKPT进程
作用:
发出信号给DBWn
更新数据文件头
更新控制文件
At specific times, all modified databasebuffers in the system global area are written to the datafiles by DBWn. Thisevent is called a checkpoint. The checkpoint process is responsible forsignalling DBWn at checkpoints and updating all the datafiles and control filesof the database to indicate the most recent checkpoint.
二 操作示例
[oracle@localhost 桌面]$ ps -ef | grep ora_
oracle 6491 1 0 11:17 ? 00:00:00 ora_pmon_orcl
oracle 6493 1 0 11:17 ? 00:00:00 ora_psp0_orcl
oracle 6495 1 0 11:17 ? 00:00:00 ora_mman_orcl
oracle 6497 1 0 11:17 ? 00:00:00 ora_dbw0_orcl
oracle 6499 1 0 11:17 ? 00:00:00 ora_lgwr_orcl
oracle 6501 1 0 11:17 ? 00:00:00 ora_ckpt_orcl
oracle 6503 1 0 11:17 ? 00:00:00 ora_smon_orcl
oracle 6505 1 0 11:17 ? 00:00:00 ora_reco_orcl
oracle 6507 1 0 11:17 ? 00:00:00 ora_cjq0_orcl
oracle 6509 1 0 11:17 ? 00:00:00 ora_mmon_orcl
oracle 6511 1 0 11:17 ? 00:00:00 ora_mmnl_orcl
oracle 6513 1 0 11:17 ? 00:00:00 ora_d000_orcl
oracle 6515 1 0 11:17 ? 00:00:00 ora_s000_orcl
oracle 6519 1 0 11:17 ? 00:00:00 ora_qmnc_orcl
oracle 6527 1 0 11:18 ? 00:00:00 ora_q000_orcl
oracle 6529 1 0 11:18 ? 00:00:00 ora_q001_orcl
oracle 6538 1 0 11:19 ? 00:00:00 ora_j000_orcl
oracle 6541 2720 0 11:19 pts/0 00:00:00 grep ora_
[oracle@localhost 桌面]$ ps -ef | grep ora_ | grep ckpt
oracle 6501 1 0 11:17 ? 00:00:00 ora_ckpt_orcl
[oracle@localhost 桌面]$ kill -9 6501
[oracle@localhost 桌面]$ ps -ef | grep ora_ | grep ckpt
[oracle@localhost 桌面]$ ps -ef | grep ora_
oracle 6554 2720 0 11:20 pts/0 00:00:00 grep ora_
[oracle@localhost 桌面]$ sqlplus / as sysdba; SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jun 6 11:20:14 2013 Copyright (c) 1982, 2005, Oracle. All rights reserved. Connected to an idle instance. SQL> startup
ORACLE instance started. Total System Global Area 838860800 bytes
Fixed Size 1222192 bytes
Variable Size 788531664 bytes
Database Buffers 46137344 bytes
Redo Buffers 2969600 bytes
Database mounted.
Database opened.
SQL> exit;
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
[oracle@localhost 桌面]$ ps -ef | grep ora_ | grep ckpt
oracle 6568 1 0 11:20 ? 00:00:00 ora_ckpt_orcl
三 总结
1.CKPT,非常非常重要的后台进程,同样不能kill。触发顺序:CKPT------>DBWR------->LGWR
2.作用:发出信号给DBWn、更新数据文件头、更新控制文件
3.Linux中使用ps命令查看CKPT进程。
我的邮箱:wgbno27@163.com 新浪微博:@Wentasy27
微信公众平台:JustOracle(微信号:justoracle)
数据库技术交流群:336882565(加群时验证 From CSDN XXX)
Oracle交流讨论组:https://groups.google.com/d/forum/justoracle By Larry Wen
![]() |
|
| @Wentasy 博文仅供参考,欢迎大家来访。如有错误之处,希望批评指正。原创博文如需转载请注明出处,谢谢 :) [CSDN博客] |
Oracle体系结构及备份(十六)——bg-ckpt的更多相关文章
- Oracle体系结构及备份(十七)——bg-others
一 其他进程 Archiver (ARCn) Oneor more archiver processes copy the redo log files to archival storage whe ...
- oracle学习笔记(十六) PL/SQL 异常和goto语句
PL/SQL 异常和goto语句 异常 预定义异常 oracle常见预定义异常: 错误号 异常错误信息名称 说明 ORA-0001 DUP_VAL_ON_INDEX 试图破坏一个唯一性限制 ORA-0 ...
- 【Oracle/Java】给十六张表各插入十万条数据 单线程耗时半小时 多线程耗时一刻钟
测试机Oracle版本: SQL> select * from v$version; BANNER ----------------------------------------------- ...
- Oracle体系结构详解
对于一门技术的学习,尤其是像Oracle database这种知识体系极其庞杂的技术来讲,从宏观上了解其体系结构是至关重要的.同时,个人认为,未必是专业DBA人员才需要了解其体系结构(固然对于数据库专 ...
- oracle 体系结构
oracle 体系结构 数据库的体系结构是指数据库的组成.工作过程与原理,以及数据在数据库中的组织与管理机制. 1. oracle工作原理: 1).在数据库服务器上启动Oracle实例:2).应用程序 ...
- Oracle实例和Oracle数据库(Oracle体系结构)
--========================================== --Oracle实例和Oracle数据库(Oracle体系结构) --==================== ...
- 【转载】Oracle实例和Oracle数据库(Oracle体系结构)
免责声明: 本文转自网络文章,转载此文章仅为个人收藏,分享知识,如有侵权,请联系博主进行删除. 原文作者:Leshami 原文地址:http://blog.csdn.net/ ...
- oracle 体系结构解析
三.oracle 体系结构 1.oracle内存由SGA+PGA所构成 2.oracle数据库体系结构数据库的体系结构是指数据库的组成.工作过程与原理,以及数据在数据库中的组织与管理机制. oracl ...
- 十六款值得关注的NoSQL与NewSQL数据库--转载
原文地址:http://tech.it168.com/a2014/0929/1670/000001670840_all.shtml [IT168 评论]传统关系型数据库在诞生之时并未考虑到如今如火如荼 ...
随机推荐
- jmert jdbc request支持执行多条sql语句并设置jdbc字符集
1.jdbc request支持执行多条sql语句 在JDBC Connection Configuration中的sql连接字串中添加如下内容 allowMultiQueries=true 如下图: ...
- jersey中的405错误 method not allowed
- VFS,super_block,inode,dentry—结构体图解
总结: VFS只存在于内存中,它在系统启动时被创建,系统关闭时注销. VFS的作用就是屏蔽各类文件系统的差异,给用户.应用程序.甚至Linux其他管理模块提供统一的接口集合. 管理VFS数据结构的组成 ...
- OBJECT_ID()的使用方法
数据库中每个对像都有一个唯一的ID值,用Object_name(id)可以根据ID值得到对像的名称,object_id(name)可以根据对像名称得到对象的ID object_id()只能返回用户创建 ...
- CVE-2013-1347Microsoft Internet Explorer 8 远程执行代码漏洞
[CNNVD]Microsoft Internet Explorer 8 远程执行代码漏洞(CNNVD-201305-092) Microsoft Internet Explorer是美国微软(Mic ...
- 安装部署Apache Hadoop (本地模式和伪分布式)
本节内容: Hadoop版本 安装部署Hadoop 一.Hadoop版本 1. Hadoop版本种类 目前Hadoop发行版非常多,有华为发行版.Intel发行版.Cloudera发行版(CDH)等, ...
- JAVA类课后练习
1.Pg168--2 package com.hanqi; import java.util.Scanner; public class Rectangle { Rectangle() { //完成初 ...
- 《Android源码设计模式》--装饰模式
No1: Activity继承于ContextThemeWrapper,继承于ContextWrapper,继承于Context. No2: Context中方法的所有实现均由ContextImpl类 ...
- pyinstaller 打包错误集锦
最近在用 pyinstaller 打包项目的时候遇到如下错误: RecursionError: maximum recursion depth exceeded 解决方案 执行 pyinstaller ...
- 【运维理论】RAID级别简介
独立硬盘冗余阵列(RAID, Redundant Array of Independent Disks),旧称廉价磁盘冗余阵列(RAID, Redundant Array of Inexpensive ...
