Oralce Architectural Components
Meroy Structure
Oracle’s memory structure consists of two memory areas known as :
System Grobal Area(SGA):allocated at instance start up,and is fundamental component of an Oralce instance
Program Global Area(PGA):allocated where the server process is started
SGA:System Grobal Area
Is dynamic,sized
Size by the SGA_MAX_SIZE parameter
Allocated and tracked in granules by SGA components
Contiguous virtual memory allocation
Granule size based on total estimated SGA_MAX_SIZE
SGA可以动态改变,最大的尺寸可以通过SGA_MAX_SIZE来改变。Granules是SGA的最小单位。SGA是连续的内存区域,并且最大不能超过 SGA_MAX_SIZE.
可以通过show sga 查看SGA 大小.
可以通过语句
select component,granule_size from v$sga_dynamic_components.
查看granule的大小
1.The SGA consists of several memory structures:
Shared Pool: SHARED_POOL_SIZE
Database Buffer Cache: DB_CACHE_SIZE
Redo Log Buffer: LOG_BUFFER
Other structures(for example ,lock and latch management,statistical data)
2.There are two additional memory structures that can be configured within the SGA:
Large Pool: LARGE_POOL_SIZE
Java Pool: JAVA_POOL_SIZE
Shared Pool
Used to store
Most recently executed SQL statements
Most recently used data definitions
It consists of two key performance-related memory structures:
Library Cache
Data Dictionary Cache
Sized by the parameter
每一个SQL将被解析,制定执行计划。解析SQL语句被存到共享池中。包含两部分重要内容。为Library Cache和Data Dictionary Cache
Library Cache
Stores information about the most recently used SQL and PL/SQL statements
Enables the sharing of commonly used statements
Is manager by a least recently user(LRU) algorithm
Consists of two structures:
Shared SQL area
Shared PL/SQL area
Size determined by the Shared Pool sizing
存储的是经过编译解析后的SQL语句和PL/SQL语句的内容.
包含两部分。一部分是SQL area ,一部分是PL/SQL area
大小由Shared Pool 管理
Data Dictionary Cache
A collection of the most recently used definitions in the database
Includes information about database files, tables , indexes , columns , users, privileges ,and others database objects.
During the parse phase ,the server process looks at the data dictionary for information to resolve object names and validate access
Improves response time on queries and DML
Size determined by the Shared Pool sizing.
数据字典是使用最频繁的,各种数据操作都需要使用到.各种数据库信息被保存在这里.用来响应各种查询和DML操作
大小由Shared Pool 管理
Database Buffer Cache
Stores copies of data block that have been retrieved from the data files
Enables great performance gains when you bobtain and update data
Manager through an LRU algorithm
DB_BLOCK_SIZE determines primary block size
缓存数据文件中的数据。
Consists of independent subcaches
DB_CACHE_SIZE
DB_KEEP_CACHE_SIZE
DB_RECYCLE_CACHE_SIZE
Can be dynamically resized
DB_CACHE_ADVICE Set to gather statistics for predicting different cache size behavior
Statistics displayed by V$DB_CACHE_ADVICE
Redo Log Buffer
Records all changes made to the database data blocks
Primary purpose is recovery
Changer recorded within are called redo entries
Redo entries contain information to reconstruct or redo changes
Size defined by LOG_BUFFER
主要用来恢复数据文件。每做一次操作,就会形成一个操作记录。
Large Pool
An optional area of memory in the SGA
Relieves the burden placed on the Shared Pool
Used For:
Session memory(UGA) for the Shared Server
I/O server processes
Backup and restore operations or RMAN
Parallel execution message buffers
PARALLEL_ATUOMATIC_TUNING set to TRUE
Dose not use an LRU list
Sized by LARGE_POOL_SIZE
Can be dynamically resized
JAVA Pool
Services parsing requirements for java commands
Requied if installing and using java
Size by JAVA_POOL_SIZE parameter
PGA: Program Global Area
Memory reserved for each user process connecting to an Oracle database
Allocated when a process is created
Deal located when the process is terminated
Used by only one process
分享到:
相关推荐
<br>系统设计<br> 1 jive设计思路 <br> 2 jive的工作内幕 <br> 3 Jive源代码研究 <br> 4 Jive中的设计模式 <br> 5 jive学习笔记 <br><br><br> <br>设计模式<br> 1 大道至简-Java之23种模式一点就通 <br> 2 设计模式...
### Oracle学习笔记知识点详解 #### 一、Oracle简介 Oracle是一家知名的软件公司,以其数据库管理系统闻名全球。该公司成立于1977年,总部位于美国加利福尼亚州。Oracle不仅提供数据库解决方案,还涉及中间件、...
系统设计<br> 1 jive设计思路 <br> 2 jive的工作内幕 <br> 3 Jive源代码研究 <br> 4 Jive中的设计模式 <br> 5 jive学习笔记 <br><br><br><br><br>数据库设计<br> 1 Jive Forums数据库说明(英文) <br> 2 Jive KB...
Oracle学习笔记 Oracle学习笔记是李兴华老师编写的Oracle从入门到精通的学习笔记,涵盖了 Oracle 的多表查询、连接、组函数和分组统计等知识点。在本篇笔记中,李兴华老师详细介绍了多表查询的基本语法、左右连接...
Oracle学习笔记精华版是针对数据库管理系统Oracle的一份重要学习资源,涵盖了从基础概念到高级特性的全面知识。Oracle,作为全球广泛使用的大型企业级数据库系统,对于IT专业人员尤其是数据库管理员(DBA)来说,是...
Oracle学习笔记 以下是我这一周学习oracle整理的笔记,包括课堂的内容和自己看额外看的视频补充的一些内容,基本上囊括了所有oracle的基本知识。主要的形式是例子代码加代码解释加运行结果,我个人认为对于没有学习...
以下是对Oracle学习笔记中提到的一些关键知识点的详细解释: 1. **SQL执行顺序**: SQL语句的执行顺序是:`FROM` -> `WHERE` -> `SELECT` -> `GROUP BY` -> `HAVING` -> `ORDER BY`。首先从`FROM`子句开始,确定...
资源名称:Oracle学习笔记-日常应用、深入管理、性能优化内容简介:Oracle学习笔记-日常应用、深入管理、性能优化Oracle 11g是最具代表性的高端关系型数据库管理系统,它在世界各地的大型商务数据库应用系统中被广泛...
### Oracle学习笔记知识点详解 #### 一、SQL语言概述 SQL (Structured Query Language) 是一种用于管理和处理关系数据库的标准编程语言。它最初由 Boyce 和 Chamberlin 在 1974 年提出,并随着各公司的不断完善和...
Oracle DBA 学习笔记 标题:Oracle DBA 学习笔记 描述:学习使用维护 Oracle 数据库数年,对认为值得记录的 Oracle 维护脚本进行记录总结,存起来,虽然今后开源是方向,但不可否认 Oracle 仍然非常有水平的,在...
根据提供的信息,我们可以总结出以下Oracle数据库学习的关键知识点: ...以上是基于提供的内容整理出的Oracle学习笔记中的关键知识点。通过理解这些基础知识,可以更好地管理和操作Oracle数据库。
以下是对Oracle学习笔记整理的主要知识点的详细说明: 1. **数据库选择**: 在决定使用哪种数据库时,通常需要考虑项目的规模、性能需求、安全性要求以及可用资源。Oracle数据库因其稳定性、可扩展性和高性能而被...
以下是对Oracle数据库一些基础知识的详细解释,主要基于提供的个人学习笔记内容。 **第一节:数据库管理** 1. **创建用户**:`CREATE USER`命令用于创建新的数据库用户,如`CREATE USER username IDENTIFIED BY ...
### Oracle 学习笔记知识点概览 #### 一、Oracle 数据库系统参数查询与管理 在 Oracle 数据库的学习过程中,了解如何查看和管理数据库的系统参数是非常重要的。这些参数直接影响着数据库的性能和稳定性。 ##### ...
超详细Oracle学习笔记,详细记录了oracle的学习过程中遇到的各种问题及基础知识,适合初中级oracle使用人员学习参考。
Oracle数据库是世界上最流行的数据库管理系统之一,它提供了丰富的特性和功能来优化数据管理和查询性能。本文主要探讨Oracle数据库的入门基础知识,特别是与索引相关的概念。 首先,我们要理解ROWID的概念。ROWID是...
### ORACLE经典学习笔记知识点概览 #### 第一章 ORACLE 命令 本章节主要介绍了Oracle数据库中常用的命令及其使用方法。 1. **查看参数文件**: `Desc v$parameter` - 这个命令用于查看Oracle的参数文件信息,通过...