Download DBAI_les01

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Extensible Storage Engine wikipedia , lookup

Open Database Connectivity wikipedia , lookup

Relational model wikipedia , lookup

Database wikipedia , lookup

Concurrency control wikipedia , lookup

Microsoft Jet Database Engine wikipedia , lookup

Microsoft SQL Server wikipedia , lookup

Database model wikipedia , lookup

Clusterpoint wikipedia , lookup

PL/SQL wikipedia , lookup

Navitaire Inc v Easyjet Airline Co. and BulletProof Technologies, Inc. wikipedia , lookup

Object-relational impedance mismatch wikipedia , lookup

Oracle Database wikipedia , lookup

Transcript
Oracle Architectural Components
Copyright © Oracle Corporation, 2001. All rights reserved.
Objectives
After completing this lesson, you should be able to do
the following:
• Outline the Oracle architecture and its main
components
• List the structures involved in connecting a user to
an Oracle Instance
1-2
Copyright © Oracle Corporation, 2001. All rights reserved.
Overview of Primary Components
User
process
Shared Pool
Library
Cache
Server
process
Data Dictionary
Cache
Instance
SGA
Database
Buffer Cache
Redo Log
Buffer
Java Pool
Large Pool
PGA
PMON SMON DBWR LGWR
Parameter
file
Datafiles
Control
files
CKPT
Redo Log
files
Password
file
Database
1-3
Copyright © Oracle Corporation, 2001. All rights reserved.
Others
Archived
Log files
Oracle Server
An Oracle server:
• Is a database management
system that provides an
open, comprehensive,
integrated approach to
information management
• Consists of an Oracle
Instance and an Oracle
database
1-5
Oracle Server
Copyright © Oracle Corporation, 2001. All rights reserved.
Oracle Instance
An Oracle Instance:
• Is a means to access an Oracle database
• Always opens one and only one database
• Consists of memory and background process
structures
Shared Pool
Library
Cache
Data Dictionary
Cache
Instance
SGA
Database
Buffer Cache
Redo Log
Buffer
Java Pool
Large Pool
PMON SMON DBWR LGWR
1-6
CKPT
Others
Memory
structures
Background
process structures
Copyright © Oracle Corporation, 2001. All rights reserved.
Establishing a Connection
and Creating a Session
Connecting to an Oracle Instance:
• Establishing a user connection
• Creating a session
Connection
established
User
process
Server
process
Session created
Oracle Server
Database user
1-7
Copyright © Oracle Corporation, 2001. All rights reserved.
Oracle Database
An Oracle database:
• Is a collection of data that is treated as a unit
• Consists of three file types
Parameter
file
Oracle Database
Redo
Log
Datafiles Control
files
files
Password
file
1-9
Copyright © Oracle Corporation, 2001. All rights reserved.
Archived
Log files
Physical Structure
The physical structure includes three types of files:
• Control files
• Datafiles
• Redo log files
Header
Online
Redo Log
files
1-10
Datafiles
(includes
Data
Dictionary)
Control
files
Copyright © Oracle Corporation, 2001. All rights reserved.
Memory Structure
Oracle’s memory structure consists of two memory
areas known as:
• System Global Area (SGA): Allocated at instance
startup, and is a fundamental component of an
Oracle Instance
• Program Global Area (PGA): Allocated when the
server process is started
1-11
Copyright © Oracle Corporation, 2001. All rights reserved.
System Global Area
• The SGA consists of several memory structures:
–
–
–
–
Shared Pool
Database Buffer Cache
Redo Log Buffer
Other structures (for example, lock and latch
management, statistical data)
• There are two additional memory structures that can
be configured within the SGA:
– Large Pool
– Java Pool
1-12
Copyright © Oracle Corporation, 2001. All rights reserved.
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
SHARED_POOL_SIZE
ALTER SYSTEM SET
SHARED_POOL_SIZE = 64M;
1-13
Shared Pool
Library
Cache
Data
Dictionary
Cache
Copyright © Oracle Corporation, 2001. All rights reserved.
Library Cache
• Stores information about the most recently used
SQL and PL/SQL statements
• Enables the sharing of commonly used statements
• Is managed by a least recently used (LRU) algorithm
• Consists of two structures:
– Shared SQL area
– Shared PL/SQL area
• Size determined by the Shared Pool sizing
1-14
Copyright © Oracle Corporation, 2001. All rights reserved.
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 other
database objects
• During the parse phase, the server process looks at
the data dictionary for information to resolve object
names and validate access
• Caching data dictionary information into memory
improves response time on queries and DML
• Size determined by the Shared Pool sizing
1-15
Copyright © Oracle Corporation, 2001. All rights reserved.
Database Buffer Cache
• Stores copies of data blocks that have been
retrieved from the datafiles
• Enables great performance gains when you obtain
and update data
• Managed through an LRU algorithm
• DB_BLOCK_SIZE determines primary block size
Database Buffer
Cache
1-16
Copyright © Oracle Corporation, 2001. All rights reserved.
Database Buffer Cache
• Consists of independent sub-caches:
– DB_CACHE_SIZE
– DB_KEEP_CACHE_SIZE
– DB_RECYCLE_CACHE_SIZE
• Can be dynamically resized
ALTER SYSTEM SET DB_CACHE_SIZE = 96M;
• DB_CACHE_ADVICE set to gather statistics for
predicting different cache size behavior
• Statistics displayed by V$DB_CACHE_ADVICE
1-17
Copyright © Oracle Corporation, 2001. All rights reserved.
Redo Log Buffer
• Records all changes made to the database data
blocks
• Primary purpose is recovery
• Changes recorded within are called redo entries
• Redo entries contain information to reconstruct
or redo changes
• Size defined by LOG_BUFFER
Redo Log
Buffer
1-19
Copyright © Oracle Corporation, 2001. All rights reserved.
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_AUTOMATIC_TUNING set to TRUE
• Does not use an LRU list
• Sized by LARGE_POOL_SIZE
1-20
Copyright © Oracle Corporation, 2001. All rights reserved.
Java Pool
• Services parsing requirements for Java commands
• Required if installing and using Java
• Sized by JAVA_POOL_SIZE parameter
1-22
Copyright © Oracle Corporation, 2001. All rights reserved.
Program Global Area
• Memory reserved for each user
process connecting to an Oracle
database
• Allocated when a process is
created
• Deallocated when the process is
terminated
• Used by only one process
1-23
PGA
Server
process
User
process
Copyright © Oracle Corporation, 2001. All rights reserved.
Process Structure
Oracle takes advantage of various types of processes:
• User process: Started at the time a database user
requests connection to the Oracle server
• Server process: Connects to the Oracle Instance
and is started when a user establishes a session
• Background processes: Started when an Oracle
Instance is started
1-26
Copyright © Oracle Corporation, 2001. All rights reserved.
User Process
• A program that requests interaction with the Oracle
server
• Must first establish a connection
• Does not interact directly with the Oracle server
Server
process
User
process
Connection
established
Database user
1-27
Copyright © Oracle Corporation, 2001. All rights reserved.
Server Process
• A program that directly interacts with the Oracle
server
• Fulfills calls generated and returns results
• Can be Dedicated or Shared Server
Connection
established
User
process
Server
process
Session created
Oracle server
Database user
1-28
Copyright © Oracle Corporation, 2001. All rights reserved.
Background Processes
Maintains and enforces relationships between physical
and memory structures
• Mandatory background processes:
– DBWn
– LGWR
PMON
SMON
CKPT
• Optional background processes:
–
–
–
–
1-29
ARCn
CJQ0
Dnnn
LCKn
LMDn
LMON
Pnnn
QMNn
RECO
Snnn
Copyright © Oracle Corporation, 2001. All rights reserved.
Database Writer (DBWn)
Instance
SGA
Database
Buffer
Cache
DBWn
Datafiles Control
files
DBWn writes when:
• Checkpoint occurs
• Dirty buffers reach
threshold
• There are no free buffers
• Timeout occurs
• RAC ping request is made
• Tablespace OFFLINE
• Tablespace READ ONLY
Redo
• Table DROP or TRUNCATE
Log
files
• Tablespace BEGIN
BACKUP
Database
1-30
Copyright © Oracle Corporation, 2001. All rights reserved.
Log Writer (LGWR)
Instance
SGA
Redo Log
Buffer
DBWn LGWR
Datafiles Control
files
LGWR writes:
• At commit
• When one-third full
• When there is 1 MB of
redo
• Every three seconds
• Before DBWn writes
Redo
Log
files
Database
1-31
Copyright © Oracle Corporation, 2001. All rights reserved.
System Monitor (SMON)
Instance
SGA
SMON
Datafiles Control
files
Database
1-32
Redo
Log
files
Responsibilities:
• Instance recovery
– Rolls forward
changes in redo logs
– Opens database for
user access
– Rolls back
uncommitted
transactions
• Coalesces free space
• Deallocates temporary
segments
Copyright © Oracle Corporation, 2001. All rights reserved.
Process Monitor (PMON)
Instance
SGA
PMON
Cleans up after
failed processes by:
• Rolling back the
transaction
• Releasing locks
• Releasing other
resources
• Restarting dead
dispatchers
PGA area
1-33
Copyright © Oracle Corporation, 2001. All rights reserved.
Checkpoint (CKPT)
Instance
SGA
DBWn LGWR CKPT
Datafiles Control
files
Responsible for:
• Signaling DBWn at
checkpoints
• Updating datafile
headers with
checkpoint information
• Updating control files
with checkpoint
information
Redo
Log
files
Database
1-34
Copyright © Oracle Corporation, 2001. All rights reserved.
Archiver (ARCn)
• Optional background process
• Automatically archives online redo logs when
ARCHIVELOG mode is set
• Preserves the record of all changes made to the
database
Datafiles Control
files
1-35
Redo
Log
files
ARCn
Archived
Redo Log
files
Copyright © Oracle Corporation, 2001. All rights reserved.
Logical Structure
• Dictates how the physical space of a database is
used
• Hierarchy consisting of tablespaces, segments,
extents, and blocks
Tablespace
Datafile
Segment
Extent
1-37
Segment
Blocks
Copyright © Oracle Corporation, 2001. All rights reserved.
Processing SQL Statements
• Connect to an instance using:
– User process
– Server process
• The Oracle server components that are used
depend on the type of SQL statement:
– Queries return rows
– DML statements log changes
– Commit ensures transaction recovery
• Some Oracle server components do not participate
in SQL statement processing
1-40
Copyright © Oracle Corporation, 2001. All rights reserved.
Summary
In this lesson, you should have learned how to:
• Explain database files: datafiles, control files, online
redo logs
• Explain SGA memory structures: Database Buffer
Cache, Shared Pool, and Redo Log Buffer
• Explain primary background processes:
DBWn, LGWR, CKPT, PMON, SMON
• Explain the use of the background process ARCn
• Identify optional and conditional background
processes
• Explain logical hierarchy
1-42
Copyright © Oracle Corporation, 2001. All rights reserved.
Practice 1 Overview
This practice covers the following topics:
• Review of architectural components
• Structures involved in connecting a user to an
Oracle Instance
1-43
Copyright © Oracle Corporation, 2001. All rights reserved.
1-46
Copyright © Oracle Corporation, 2001. All rights reserved.