Table of Contents
一 什么是后台进程
二 操作示例
三 总结
Home Database Mysql Tutorial Oracle体系结构及备份(十一)bcakground-process

Oracle体系结构及备份(十一)bcakground-process

Jun 07, 2016 pm 03:08 PM
oracle Architecture backup

一 什么是后台进程 Oracle后台进程包括数据写进程(DatabaseWriter,DBWR)、日志写进程(Log Writer,LGWR)、系统监控(System Monitor,SMON)、进程监控(Process Monitor,PMON)、检查点进程(Checkpoint Process,CKPT)、归档进程、服务进程、用户进程。 数据写进程

一 什么是后台进程


        Oracle后台进程包括数据写进程(DatabaseWriter,DBWR)、日志写进程(Log Writer,LGWR)、系统监控(System Monitor,SMON)、进程监控(Process Monitor,PMON)、检查点进程(Checkpoint Process,CKPT)、归档进程、服务进程、用户进程。

 

        数据写进程:负责将更改的数据从数据库缓冲区高速缓存写入数据文件

 

        日志写进程:将重做日志缓冲区中的更改写入在线重做日志文件

 

        系统监控:检查数据库的一致性如有必要还会在数据库打开时启动数据库的恢复

 

        进程监控:负责在一个Oracle 进程失败时清理资源

 

        检查点进程:负责在每当缓冲区高速缓存中的更改永久地记录在数据库中时,更新控制文件和数据文件中的数据库状态信息。该进程在检查点出现时,对全部数据文件的标题进行修改,指示该检查点。在通常的情况下,该任务由LGWR执行。然而,如果检查点明显地降低系统性能时,可使CKPT进程运行,将原来由LGWR进程执行的检查点的工作分离出来,由CKPT进程实现。对于许多应用情况,CKPT进程是不必要的。只有当数据库有许多数据文件,LGWR在检查点时明显地降低性能才使CKPT运行。CKPT进程不将块写入磁盘,该工作是由DBWR完成的。 init.ora文件中 CHECKPOINT_PROCESS 参数控制CKPT进程的使能或使不能。缺省时为FALSE,即为使不能。

 

        归档进程:在每次日志切换时把已满的日志组进行备份或归档

 

        服务进程:用户进程服务。

 

        用户进程:在客户端,负责将用户的SQL语句传递给服务进程,并从服务器段拿回查询数据。


 Oracle体系结构及备份(十一)bcakground-process


        To maximizeperformance and accommodate many users, a multiprocess Oracle Database systemusesbackground processes.Background processes consolidate functions that would otherwise be handled bymultiple database programs running for each user process. Background processesasynchronously perform I/O and monitor other Oracle Database processes toprovide increased parallelism for better performance and reliability.



二 操作示例

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_
oracle    2638     1  0 16:43 ?        00:00:00 ora_pmon_orcl
oracle    2640     1  0 16:43 ?        00:00:00 ora_psp0_orcl
oracle    2642     1  0 16:43 ?        00:00:00 ora_mman_orcl
oracle    2644     1  0 16:43 ?        00:00:00 ora_dbw0_orcl
oracle    2646     1  0 16:43 ?        00:00:00 ora_lgwr_orcl
oracle    2648     1  0 16:43 ?        00:00:00 ora_ckpt_orcl
oracle    2650     1  0 16:43 ?        00:00:00 ora_smon_orcl
oracle    2652     1  0 16:43 ?        00:00:00 ora_reco_orcl
oracle    2654     1  0 16:43 ?        00:00:00 ora_cjq0_orcl
oracle    2656     1  0 16:43 ?        00:00:00 ora_mmon_orcl
oracle    2658     1  0 16:43 ?        00:00:00 ora_mmnl_orcl
oracle    2660     1  0 16:43 ?        00:00:00 ora_d000_orcl
oracle    2662     1  0 16:43 ?        00:00:00 ora_s000_orcl
oracle    2666     1  0 16:43 ?        00:00:00 ora_qmnc_orcl
oracle    2683     1  0 16:43 ?        00:00:00 ora_q000_orcl
oracle    2685     1  0 16:43 ?        00:00:00 ora_q001_orcl
oracle    2720     1  0 16:52 ?        00:00:00 ora_j000_orcl
oracle    2723  2597  0 16:52 pts/0    00:00:00 grep ora_

[oracle@localhost 桌面]$ ps -ef | grep ora_ | egrep "pmon|smon|dbw0|lgw|ckpt"
oracle    2638     1  0 16:43 ?        00:00:00 ora_pmon_orcl
oracle    2644     1  0 16:43 ?        00:00:00 ora_dbw0_orcl
oracle    2646     1  0 16:43 ?        00:00:00 ora_lgwr_orcl
oracle    2648     1  0 16:43 ?        00:00:00 ora_ckpt_orcl
oracle    2650     1  0 16:43 ?        00:00:00 ora_smon_orcl

SQL> desc v$bgprocess;
 Name					   Null?    Type
 ----------------------------------------- -------- ----------------------------
 PADDR						    RAW(4)
 PSERIAL#					    NUMBER
 NAME						    VARCHAR2(5)
 DESCRIPTION					    VARCHAR2(64)
 ERROR						    NUMBER

SELECT * FROM v$bgprocess;

SQL> SELECT * FROM V$bgprocess WHERE paddr'00'
  2  ;

PADDR	   PSERIAL# NAME
-------- ---------- -----
DESCRIPTION							      ERROR
---------------------------------------------------------------- ----------
52A16830	  1 PMON
process cleanup 						 ##########

52A16DE4	  1 PSP0
process spawner 0						 ##########

52A17398	  1 MMAN
Memory Manager							 ##########


PADDR	   PSERIAL# NAME
-------- ---------- -----
DESCRIPTION							      ERROR
---------------------------------------------------------------- ----------
52A1794C	  1 DBW0
db writer process 0						 ##########

52A17F00	  1 LGWR
Redo etc.							 ##########

52A184B4	  1 CKPT
checkpoint							 ##########


PADDR	   PSERIAL# NAME
-------- ---------- -----
DESCRIPTION							      ERROR
---------------------------------------------------------------- ----------
52A18A68	  1 SMON
System Monitor Process						 ##########

52A1901C	  1 RECO
distributed recovery						 ##########

52A195D0	  1 CJQ0
Job Queue Coordinator						 ##########


PADDR	   PSERIAL# NAME
-------- ---------- -----
DESCRIPTION							      ERROR
---------------------------------------------------------------- ----------
52A1B808	  1 QMNC
AQ Coordinator							 ##########

52A19B84	  1 MMON
Manageability Monitor Process					 ##########

52A1A138	  1 MMNL
Manageability Monitor Process 2 				 ##########


12 rows selected.

SQL> col description for a10;
SQL> COL ERROR CLEAR;
SQL> SELECT name FROM v$bgprocess WHERE paddr'00';

NAME
-----
PMON
PSP0
MMAN
DBW0
LGWR
CKPT
SMON
RECO
CJQ0
QMNC
MMON

NAME
-----
MMNL

12 rows selected.
SQL> set pagesize 99;
SQL> SELECT name FROM v$bgprocess WHERE paddr'00';

NAME
-----
PMON
PSP0
MMAN
DBW0
LGWR
CKPT
SMON
RECO
CJQ0
QMNC
MMON
MMNL

12 rows selected.
Copy after login


三 总结


        1.后台进程就是伴随着数据库运行的那些进程,以下几个进程非常重要:DBWR DBWN PMON SMON CKPT。

        2.Linux下通过ps命令可以查看后台进程的信息。



<span><span>我的邮箱</span></span><span>:</span>wgbno27@163.com <span> <span>新浪微博</span></span><span>:</span>@Wentasy27
  <span>微信公众平台</span>:JustOracle(微信号:justoracle)
  <span>IT交流群</span>:336882565(加群时验证 From CSDN XXX)
  <span>Oracle交流讨论组</span>:https://groups.google.com/d/forum/justoracle
  <span><strong>By Larry Wen</strong></span>
Copy after login


Oracle体系结构及备份(十一)bcakground-process Oracle体系结构及备份(十一)bcakground-process Oracle体系结构及备份(十一)bcakground-process
@Wentasy
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How long will Oracle database logs be kept? How long will Oracle database logs be kept? May 10, 2024 am 03:27 AM

The retention period of Oracle database logs depends on the log type and configuration, including: Redo logs: determined by the maximum size configured with the "LOG_ARCHIVE_DEST" parameter. Archived redo logs: Determined by the maximum size configured by the "DB_RECOVERY_FILE_DEST_SIZE" parameter. Online redo logs: not archived, lost when the database is restarted, and the retention period is consistent with the instance running time. Audit log: Configured by the "AUDIT_TRAIL" parameter, retained for 30 days by default.

Function to calculate the number of days between two dates in oracle Function to calculate the number of days between two dates in oracle May 08, 2024 pm 07:45 PM

The function in Oracle to calculate the number of days between two dates is DATEDIFF(). The specific usage is as follows: Specify the time interval unit: interval (such as day, month, year) Specify two date values: date1 and date2DATEDIFF(interval, date1, date2) Return the difference in days

The order of the oracle database startup steps is The order of the oracle database startup steps is May 10, 2024 am 01:48 AM

The Oracle database startup sequence is: 1. Check the preconditions; 2. Start the listener; 3. Start the database instance; 4. Wait for the database to open; 5. Connect to the database; 6. Verify the database status; 7. Enable the service (if necessary ); 8. Test the connection.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to use interval in oracle How to use interval in oracle May 08, 2024 pm 07:54 PM

The INTERVAL data type in Oracle is used to represent time intervals. The syntax is INTERVAL <precision> <unit>. You can use addition, subtraction, multiplication and division operations to operate INTERVAL, which is suitable for scenarios such as storing time data and calculating date differences.

How to see the number of occurrences of a certain character in Oracle How to see the number of occurrences of a certain character in Oracle May 09, 2024 pm 09:33 PM

To find the number of occurrences of a character in Oracle, perform the following steps: Get the total length of a string; Get the length of the substring in which a character occurs; Count the number of occurrences of a character by subtracting the substring length from the total length.

How much memory does oracle require? How much memory does oracle require? May 10, 2024 am 04:12 AM

The amount of memory required by Oracle depends on database size, activity level, and required performance level: for storing data buffers, index buffers, executing SQL statements, and managing the data dictionary cache. The exact amount is affected by database size, activity level, and required performance level. Best practices include setting the appropriate SGA size, sizing SGA components, using AMM, and monitoring memory usage.

How to replace string in oracle How to replace string in oracle May 08, 2024 pm 07:24 PM

The method of replacing strings in Oracle is to use the REPLACE function. The syntax of this function is: REPLACE(string, search_string, replace_string). Usage steps: 1. Identify the substring to be replaced; 2. Determine the new string to replace the substring; 3. Use the REPLACE function to replace. Advanced usage includes: multiple replacements, case sensitivity, special character replacement, etc.

See all articles