SlideShare a Scribd company logo
Oracle DB
Architecture
Simon Huang
simon581923@gmail.com
Agenda
• 基本架構
• 資料庫引擎架構
• RAC(Real Application Clusters)架構
參考文件
• Oracle Database Documentation Library
 http://www.oracle.com/pls/db112/homepage
• E10897
 Oracle Database 2 Day DBA 11g Release 2 (11.2)
• E17264
 Oracle Database 2 Day + Real Application Clusters Guide 11g Release 2
(11.2)
基本架構
以Instance為基礎
DB1
DB2
DB3
Instance1
Instance2
Instance3
DBnInstancen
Instance
• In Windows
 Services
• In Unix-like
 Processes
比較詳細的Oracle DB結構
資料庫引擎架構
基本Instance概觀
Background Processes
• Database writer (DBWRn)
 The database writer writes modified blocks from the database buffer cache to the
files on a disk.
 Oracle Database allows a maximum of 36 database writer processes.
• Log writer (LGWR)
 The log writer process writes redo log entries to disk.
 Redo log entries are generated in the redo log buffer of the System Global Area
(SGA) and the log writer process writes the redo log entries sequentially into an
online redo log file.
• Checkpoint (CKPT)
 At specific times, all modified database buffers in the SGA are written to the data
files by a DBWR.
 The checkpoint process signals DBWRn, updates the data files and control files of
the database, and records the time of this update.
• System monitor (SMON)
 The system monitor performs instance recovery when a failed instance is
restarted.
• Process monitor (PMON)
 The process monitor performs a recovery when a user process fails.
 It cleans up the cache and frees resources that the failed process was using.
Other Background Processes
• Archiver (ARCn)
 Archiver processes copy the online redo log files to archival
storage when the log files are full or a log switch occurs.
• Manageability monitor (MMON)
 This process performs various management-related
background tasks, for example:
 Issuing alerts whenever a given metric violates its threshold value
 Taking snapshots by spawning additional processes
 Capturing statistical values for SQL objects that have been
recently modified
• Job Queue Processes (CJQ0 and Jnnn)
 Job queue processes run user jobs, often in batch mode. A job
is a user-defined task scheduled to run one or more times.
System Global Area(SGA)
• Database buffer cache
 Before data stored in the database can be queried or modified, it
must be read from a disk and stored in the buffer cache.
 All user processes connected to the database share access to the
buffer cache.
 For optimal performance, the buffer cache should be large enough
to avoid frequent disk I/O operations.
• Shared pool
 SQL statements that can be reused
 Information from the data dictionary such as user account data,
table and index descriptions, and privileges
 Stored procedures, which are executable code that is stored in the
database
• Redo log buffer
 This buffer improves performance by caching redo information
until it can be written to the physical online redo log files stored
on disk.
Other SGA Component
• Result cache
 The result cache buffers query results.
 If a query is run for which the results are stored in the result
cache, then the database returns the query results from the
result cache.
 This SGA component speeds the execution of frequently run
queries.
• Large pool
 This optional area is used to buffer large I/O requests for various
server processes.
• Java pool
 The Java pool is an area of memory that is used for all session-
specific Java code and data within the Java Virtual Machine
(JVM).
• Streams pool
 The Streams pool is an area of memory that is used by the Oracle
Streams feature
Program Global Area(PGA)
• A Program Global Area (PGA) is a memory area used by a
single Oracle Database server process.
• When we connect to an Oracle database instance, we create
a session that uses a server process for communication
between the client and database instance.
• Each server process has its own PGA.
• The PGA is used to process SQL statements and to hold
logon and other session information.
• The amount of PGA memory used and the contents of the
PGA depend on whether the instance is running in
dedicated server or shared server mode.
• The total memory used by all individual PGAs is known as
the total instance PGA memory, or instance PGA.
• Setting the size of the instance PGA in Database Control
Files, not individual PGAs.
Detail View of 11g
Detail View of 12c
Real Application
Clusters(RAC)
基本架構
RAC基本系統需求
• Clustering OS
 Windows Server Enterprise Edition, 啟用Cluster服務
 Unix-like,安裝啟用Cluster套件
• Oracle Grid Infrastructure
 Oracle Automatic Storage Management(ASM)
 Oracle Clusterware
• Server Hardware (for each node)
 Physical memory (at least 1.5 gigabyte (GB) of RAM)
 An amount of swap space equal to the amount of RAM
 Temporary space (at least 1 GB) available in /tmp
 All servers that are used in the cluster must have the same chip
architecture, for example, all 32-bit processors or all 64-bit
processors
• Oracle Universal Installer verifies that your server and
operating system meet the listed requirements.
Shared Storage需求
• SAN or NAS
• Fiber Channel or iSCSI and Logical Unit Number(LUN)
• RAID 5, 6 or 10
• At least 5.5 GB of available disk space for
 The Grid home directory
 The binary files for Oracle Clusterware, Oracle Automatic
Storage Management (Oracle ASM) and their associated log
files
• At least 4 GB of available disk space for the Oracle
Database home directory, or Oracle home directory.
• Oracle ASM
Network Hardware需求
• Each node must have at least two network interface cards (NIC).
• One adapter is for the public network interface and the other adapter is
for the private network interface (the interconnect).
• For Public interface
 The names must be the same for all nodes.
 Support TCP/IP.
• For Private interface
 The names must be the same for all nodes as well.
 Support the user datagram protocol (UDP).
 Using high-speed network adapters and a network switch(Gigabit Ethernet or
better).
 Supports TCP/IP
 Every node in the cluster must be able to connect to every private network
interface in the cluster.
• The host name of each node must conform to the RFC 952 standard,
which permits alphanumeric characters.
• Host names using underscores ("_") are not allowed.
IP Address需求
• GNS virtual IP address (GNS installations only)
 GNS: Grid Naming Service
• Single Client Access Name (SCAN)
• Virtual IP address
• Public IP address
• Private IP address
RAC Example (Simple)
RAC Example (Complex)
Tools for Oracle Clusterware,
ASM and RAC
• Oracle Universal Installer (OUI)
• Cluster Verification Utility (CVU)
 OUI runs CVU after the Oracle Clusterware installation to verify your
environment.
• Oracle Enterprise Manager
• SQL*Plus
• Server Control (SRVCTL)
• Cluster Ready Services Control (CRSCTL)
• Database Configuration Assistant (DBCA)
• Oracle Automatic Storage Management Configuration Assistant
(ASMCA)
• Oracle Automatic Storage Management Command Line utility
(ASMCMD)
• Listener Control (LSNRCTL)
Q & A
Ad

More Related Content

What's hot (20)

Oracle database performance tuning
Oracle database performance tuningOracle database performance tuning
Oracle database performance tuning
Yogiji Creations
 
Oracle data guard for beginners
Oracle data guard for beginnersOracle data guard for beginners
Oracle data guard for beginners
Pini Dibask
 
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Glen Hawkins
 
Convert single instance to RAC
Convert single instance to RACConvert single instance to RAC
Convert single instance to RAC
Satishbabu Gunukula
 
Oracle architecture ppt
Oracle architecture pptOracle architecture ppt
Oracle architecture ppt
Deepak Shetty
 
Oracle RDBMS architecture
Oracle RDBMS architectureOracle RDBMS architecture
Oracle RDBMS architecture
Martin Berger
 
Oracle dba training
Oracle  dba    training Oracle  dba    training
Oracle dba training
P S Rani
 
Backups And Recovery
Backups And RecoveryBackups And Recovery
Backups And Recovery
asifmalik110
 
Data guard architecture
Data guard architectureData guard architecture
Data guard architecture
Vimlendu Kumar
 
Oracle GoldenGate
Oracle GoldenGate Oracle GoldenGate
Oracle GoldenGate
oracleonthebrain
 
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive PresentationNabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz
 
Oracle Data Guard
Oracle Data GuardOracle Data Guard
Oracle Data Guard
Martin Meyer
 
Oracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLONOracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLON
Markus Michalewicz
 
Oracle ASM Training
Oracle ASM TrainingOracle ASM Training
Oracle ASM Training
Vigilant Technologies
 
Oracle architecture with details-yogiji creations
Oracle architecture with details-yogiji creationsOracle architecture with details-yogiji creations
Oracle architecture with details-yogiji creations
Yogiji Creations
 
Exadata master series_asm_2020
Exadata master series_asm_2020Exadata master series_asm_2020
Exadata master series_asm_2020
Anil Nair
 
Dataguard presentation
Dataguard presentationDataguard presentation
Dataguard presentation
Vimlendu Kumar
 
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c FeaturesBest Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Markus Michalewicz
 
Less01 architecture
Less01 architectureLess01 architecture
Less01 architecture
Amit Bhalla
 
Why oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19cWhy oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19c
Satishbabu Gunukula
 
Oracle database performance tuning
Oracle database performance tuningOracle database performance tuning
Oracle database performance tuning
Yogiji Creations
 
Oracle data guard for beginners
Oracle data guard for beginnersOracle data guard for beginners
Oracle data guard for beginners
Pini Dibask
 
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Glen Hawkins
 
Oracle architecture ppt
Oracle architecture pptOracle architecture ppt
Oracle architecture ppt
Deepak Shetty
 
Oracle RDBMS architecture
Oracle RDBMS architectureOracle RDBMS architecture
Oracle RDBMS architecture
Martin Berger
 
Oracle dba training
Oracle  dba    training Oracle  dba    training
Oracle dba training
P S Rani
 
Backups And Recovery
Backups And RecoveryBackups And Recovery
Backups And Recovery
asifmalik110
 
Data guard architecture
Data guard architectureData guard architecture
Data guard architecture
Vimlendu Kumar
 
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive PresentationNabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Nabil Nawaz
 
Oracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLONOracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLON
Markus Michalewicz
 
Oracle architecture with details-yogiji creations
Oracle architecture with details-yogiji creationsOracle architecture with details-yogiji creations
Oracle architecture with details-yogiji creations
Yogiji Creations
 
Exadata master series_asm_2020
Exadata master series_asm_2020Exadata master series_asm_2020
Exadata master series_asm_2020
Anil Nair
 
Dataguard presentation
Dataguard presentationDataguard presentation
Dataguard presentation
Vimlendu Kumar
 
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c FeaturesBest Practices for the Most Impactful Oracle Database 18c and 19c Features
Best Practices for the Most Impactful Oracle Database 18c and 19c Features
Markus Michalewicz
 
Less01 architecture
Less01 architectureLess01 architecture
Less01 architecture
Amit Bhalla
 
Why oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19cWhy oracle data guard new features in oracle 18c, 19c
Why oracle data guard new features in oracle 18c, 19c
Satishbabu Gunukula
 

Viewers also liked (7)

Lms inicial
Lms inicialLms inicial
Lms inicial
NIDIA DURAN
 
Less01 db architecture
Less01 db architectureLess01 db architecture
Less01 db architecture
Imran Ali
 
Architecting Applications with Hadoop
Architecting Applications with HadoopArchitecting Applications with Hadoop
Architecting Applications with Hadoop
markgrover
 
Oracle Standard Edition 2 Licence changes
Oracle Standard Edition 2 Licence changesOracle Standard Edition 2 Licence changes
Oracle Standard Edition 2 Licence changes
Kay Williams
 
Build and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus Webinar
Build and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus WebinarBuild and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus Webinar
Build and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus Webinar
Impetus Technologies
 
Oracle db performance tuning
Oracle db performance tuningOracle db performance tuning
Oracle db performance tuning
Simon Huang
 
Oracle Database Architecture - EN
Oracle Database Architecture - ENOracle Database Architecture - EN
Oracle Database Architecture - EN
Michal Simonik
 
Less01 db architecture
Less01 db architectureLess01 db architecture
Less01 db architecture
Imran Ali
 
Architecting Applications with Hadoop
Architecting Applications with HadoopArchitecting Applications with Hadoop
Architecting Applications with Hadoop
markgrover
 
Oracle Standard Edition 2 Licence changes
Oracle Standard Edition 2 Licence changesOracle Standard Edition 2 Licence changes
Oracle Standard Edition 2 Licence changes
Kay Williams
 
Build and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus Webinar
Build and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus WebinarBuild and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus Webinar
Build and Manage Hadoop & Oracle NoSQL DB Solutions- Impetus Webinar
Impetus Technologies
 
Oracle db performance tuning
Oracle db performance tuningOracle db performance tuning
Oracle db performance tuning
Simon Huang
 
Oracle Database Architecture - EN
Oracle Database Architecture - ENOracle Database Architecture - EN
Oracle Database Architecture - EN
Michal Simonik
 
Ad

Similar to Oracle db architecture (20)

Oracle 10g Introduction 1
Oracle 10g Introduction 1Oracle 10g Introduction 1
Oracle 10g Introduction 1
Eryk Budi Pratama
 
Oracle Architecture software overview ppts
Oracle Architecture software overview pptsOracle Architecture software overview ppts
Oracle Architecture software overview ppts
ssuserf272701
 
Ora01_OraArc.pdf
Ora01_OraArc.pdfOra01_OraArc.pdf
Ora01_OraArc.pdf
NamNguynMu
 
Oracle Database Introduction
Oracle Database IntroductionOracle Database Introduction
Oracle Database Introduction
Chhom Karath
 
Extreme replication at IOUG Collaborate 15
Extreme replication at IOUG Collaborate 15Extreme replication at IOUG Collaborate 15
Extreme replication at IOUG Collaborate 15
Bobby Curtis
 
Exploring the Oracle Database Architecture.ppt
Exploring the Oracle Database Architecture.pptExploring the Oracle Database Architecture.ppt
Exploring the Oracle Database Architecture.ppt
MohammedHdi1
 
exploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.pptexploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.ppt
AmitavaRoy49
 
exploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.pptexploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.ppt
AmitavaRoy49
 
Oracle DB
Oracle DBOracle DB
Oracle DB
R KRISHNA DEEKSHITH VINNAKOTA
 
Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...
Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...
Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...
Maaz Anjum
 
Session 307 ravi pendekanti engineered systems
Session 307  ravi pendekanti engineered systemsSession 307  ravi pendekanti engineered systems
Session 307 ravi pendekanti engineered systems
OUGTH Oracle User Group in Thailand
 
Oracle Cloud DBaaS
Oracle Cloud DBaaSOracle Cloud DBaaS
Oracle Cloud DBaaS
Arush Jain
 
Oracle Performance On Linux X86 systems
Oracle  Performance On Linux  X86 systems Oracle  Performance On Linux  X86 systems
Oracle Performance On Linux X86 systems
Baruch Osoveskiy
 
ZFS appliance
ZFS applianceZFS appliance
ZFS appliance
Fran Navarro
 
Extreme Replication - RMOUG Presentation
Extreme Replication - RMOUG PresentationExtreme Replication - RMOUG Presentation
Extreme Replication - RMOUG Presentation
Bobby Curtis
 
01-Oracle 19c-Architecture Overview Oracle
01-Oracle 19c-Architecture Overview Oracle01-Oracle 19c-Architecture Overview Oracle
01-Oracle 19c-Architecture Overview Oracle
FreddyRonaldSandoval
 
Adavanced Databases and Mangement system
Adavanced Databases and Mangement systemAdavanced Databases and Mangement system
Adavanced Databases and Mangement system
MurtazaMughal13
 
DBA 101 : Calling all New Database Administrators (PPT)
DBA 101 : Calling all New Database Administrators (PPT)DBA 101 : Calling all New Database Administrators (PPT)
DBA 101 : Calling all New Database Administrators (PPT)
Gustavo Rene Antunez
 
Azure Databases with IaaS
Azure Databases with IaaSAzure Databases with IaaS
Azure Databases with IaaS
Kellyn Pot'Vin-Gorman
 
VMworld 2013: Virtualizing Databases: Doing IT Right
VMworld 2013: Virtualizing Databases: Doing IT Right VMworld 2013: Virtualizing Databases: Doing IT Right
VMworld 2013: Virtualizing Databases: Doing IT Right
VMworld
 
Oracle Architecture software overview ppts
Oracle Architecture software overview pptsOracle Architecture software overview ppts
Oracle Architecture software overview ppts
ssuserf272701
 
Ora01_OraArc.pdf
Ora01_OraArc.pdfOra01_OraArc.pdf
Ora01_OraArc.pdf
NamNguynMu
 
Oracle Database Introduction
Oracle Database IntroductionOracle Database Introduction
Oracle Database Introduction
Chhom Karath
 
Extreme replication at IOUG Collaborate 15
Extreme replication at IOUG Collaborate 15Extreme replication at IOUG Collaborate 15
Extreme replication at IOUG Collaborate 15
Bobby Curtis
 
Exploring the Oracle Database Architecture.ppt
Exploring the Oracle Database Architecture.pptExploring the Oracle Database Architecture.ppt
Exploring the Oracle Database Architecture.ppt
MohammedHdi1
 
exploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.pptexploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.ppt
AmitavaRoy49
 
exploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.pptexploring-the-oracle-database-architecture.ppt
exploring-the-oracle-database-architecture.ppt
AmitavaRoy49
 
Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...
Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...
Maaz Anjum - IOUG Collaborate 2013 - An Insight into Space Realization on ODA...
Maaz Anjum
 
Oracle Cloud DBaaS
Oracle Cloud DBaaSOracle Cloud DBaaS
Oracle Cloud DBaaS
Arush Jain
 
Oracle Performance On Linux X86 systems
Oracle  Performance On Linux  X86 systems Oracle  Performance On Linux  X86 systems
Oracle Performance On Linux X86 systems
Baruch Osoveskiy
 
Extreme Replication - RMOUG Presentation
Extreme Replication - RMOUG PresentationExtreme Replication - RMOUG Presentation
Extreme Replication - RMOUG Presentation
Bobby Curtis
 
01-Oracle 19c-Architecture Overview Oracle
01-Oracle 19c-Architecture Overview Oracle01-Oracle 19c-Architecture Overview Oracle
01-Oracle 19c-Architecture Overview Oracle
FreddyRonaldSandoval
 
Adavanced Databases and Mangement system
Adavanced Databases and Mangement systemAdavanced Databases and Mangement system
Adavanced Databases and Mangement system
MurtazaMughal13
 
DBA 101 : Calling all New Database Administrators (PPT)
DBA 101 : Calling all New Database Administrators (PPT)DBA 101 : Calling all New Database Administrators (PPT)
DBA 101 : Calling all New Database Administrators (PPT)
Gustavo Rene Antunez
 
VMworld 2013: Virtualizing Databases: Doing IT Right
VMworld 2013: Virtualizing Databases: Doing IT Right VMworld 2013: Virtualizing Databases: Doing IT Right
VMworld 2013: Virtualizing Databases: Doing IT Right
VMworld
 
Ad

More from Simon Huang (9)

企業資源規劃(Erp)系統實務2.0
企業資源規劃(Erp)系統實務2.0企業資源規劃(Erp)系統實務2.0
企業資源規劃(Erp)系統實務2.0
Simon Huang
 
Mvc model
Mvc modelMvc model
Mvc model
Simon Huang
 
Sql server performance Tuning
Sql server performance TuningSql server performance Tuning
Sql server performance Tuning
Simon Huang
 
ASP.NET MVC The Begining
ASP.NET MVC The BeginingASP.NET MVC The Begining
ASP.NET MVC The Begining
Simon Huang
 
企業資源規劃(Erp)系統導入規劃
企業資源規劃(Erp)系統導入規劃企業資源規劃(Erp)系統導入規劃
企業資源規劃(Erp)系統導入規劃
Simon Huang
 
Oracle db subprograms
Oracle db subprogramsOracle db subprograms
Oracle db subprograms
Simon Huang
 
關聯式資料庫系統的規劃
關聯式資料庫系統的規劃關聯式資料庫系統的規劃
關聯式資料庫系統的規劃
Simon Huang
 
在台灣導入Open Source ERP的問題與對策
在台灣導入Open Source ERP的問題與對策在台灣導入Open Source ERP的問題與對策
在台灣導入Open Source ERP的問題與對策
Simon Huang
 
企業資源規劃(Erp)系統實務2.0
企業資源規劃(Erp)系統實務2.0企業資源規劃(Erp)系統實務2.0
企業資源規劃(Erp)系統實務2.0
Simon Huang
 
Sql server performance Tuning
Sql server performance TuningSql server performance Tuning
Sql server performance Tuning
Simon Huang
 
ASP.NET MVC The Begining
ASP.NET MVC The BeginingASP.NET MVC The Begining
ASP.NET MVC The Begining
Simon Huang
 
企業資源規劃(Erp)系統導入規劃
企業資源規劃(Erp)系統導入規劃企業資源規劃(Erp)系統導入規劃
企業資源規劃(Erp)系統導入規劃
Simon Huang
 
Oracle db subprograms
Oracle db subprogramsOracle db subprograms
Oracle db subprograms
Simon Huang
 
關聯式資料庫系統的規劃
關聯式資料庫系統的規劃關聯式資料庫系統的規劃
關聯式資料庫系統的規劃
Simon Huang
 
在台灣導入Open Source ERP的問題與對策
在台灣導入Open Source ERP的問題與對策在台灣導入Open Source ERP的問題與對策
在台灣導入Open Source ERP的問題與對策
Simon Huang
 

Recently uploaded (20)

Learn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step GuideLearn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step Guide
Marcel David
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Leading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael JidaelLeading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael Jidael
Michael Jidael
 
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your UsersAutomation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Lynda Kane
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
Asthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdfAsthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdf
VanessaRaudez
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
Learn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step GuideLearn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step Guide
Marcel David
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Leading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael JidaelLeading AI Innovation As A Product Manager - Michael Jidael
Leading AI Innovation As A Product Manager - Michael Jidael
Michael Jidael
 
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your UsersAutomation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Lynda Kane
 
What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...What is Model Context Protocol(MCP) - The new technology for communication bw...
What is Model Context Protocol(MCP) - The new technology for communication bw...
Vishnu Singh Chundawat
 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
 
Asthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdfAsthma presentación en inglés abril 2025 pdf
Asthma presentación en inglés abril 2025 pdf
VanessaRaudez
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 

Oracle db architecture

  • 2. Agenda • 基本架構 • 資料庫引擎架構 • RAC(Real Application Clusters)架構
  • 3. 參考文件 • Oracle Database Documentation Library  http://www.oracle.com/pls/db112/homepage • E10897  Oracle Database 2 Day DBA 11g Release 2 (11.2) • E17264  Oracle Database 2 Day + Real Application Clusters Guide 11g Release 2 (11.2)
  • 6. Instance • In Windows  Services • In Unix-like  Processes
  • 10. Background Processes • Database writer (DBWRn)  The database writer writes modified blocks from the database buffer cache to the files on a disk.  Oracle Database allows a maximum of 36 database writer processes. • Log writer (LGWR)  The log writer process writes redo log entries to disk.  Redo log entries are generated in the redo log buffer of the System Global Area (SGA) and the log writer process writes the redo log entries sequentially into an online redo log file. • Checkpoint (CKPT)  At specific times, all modified database buffers in the SGA are written to the data files by a DBWR.  The checkpoint process signals DBWRn, updates the data files and control files of the database, and records the time of this update. • System monitor (SMON)  The system monitor performs instance recovery when a failed instance is restarted. • Process monitor (PMON)  The process monitor performs a recovery when a user process fails.  It cleans up the cache and frees resources that the failed process was using.
  • 11. Other Background Processes • Archiver (ARCn)  Archiver processes copy the online redo log files to archival storage when the log files are full or a log switch occurs. • Manageability monitor (MMON)  This process performs various management-related background tasks, for example:  Issuing alerts whenever a given metric violates its threshold value  Taking snapshots by spawning additional processes  Capturing statistical values for SQL objects that have been recently modified • Job Queue Processes (CJQ0 and Jnnn)  Job queue processes run user jobs, often in batch mode. A job is a user-defined task scheduled to run one or more times.
  • 12. System Global Area(SGA) • Database buffer cache  Before data stored in the database can be queried or modified, it must be read from a disk and stored in the buffer cache.  All user processes connected to the database share access to the buffer cache.  For optimal performance, the buffer cache should be large enough to avoid frequent disk I/O operations. • Shared pool  SQL statements that can be reused  Information from the data dictionary such as user account data, table and index descriptions, and privileges  Stored procedures, which are executable code that is stored in the database • Redo log buffer  This buffer improves performance by caching redo information until it can be written to the physical online redo log files stored on disk.
  • 13. Other SGA Component • Result cache  The result cache buffers query results.  If a query is run for which the results are stored in the result cache, then the database returns the query results from the result cache.  This SGA component speeds the execution of frequently run queries. • Large pool  This optional area is used to buffer large I/O requests for various server processes. • Java pool  The Java pool is an area of memory that is used for all session- specific Java code and data within the Java Virtual Machine (JVM). • Streams pool  The Streams pool is an area of memory that is used by the Oracle Streams feature
  • 14. Program Global Area(PGA) • A Program Global Area (PGA) is a memory area used by a single Oracle Database server process. • When we connect to an Oracle database instance, we create a session that uses a server process for communication between the client and database instance. • Each server process has its own PGA. • The PGA is used to process SQL statements and to hold logon and other session information. • The amount of PGA memory used and the contents of the PGA depend on whether the instance is running in dedicated server or shared server mode. • The total memory used by all individual PGAs is known as the total instance PGA memory, or instance PGA. • Setting the size of the instance PGA in Database Control Files, not individual PGAs.
  • 19. RAC基本系統需求 • Clustering OS  Windows Server Enterprise Edition, 啟用Cluster服務  Unix-like,安裝啟用Cluster套件 • Oracle Grid Infrastructure  Oracle Automatic Storage Management(ASM)  Oracle Clusterware • Server Hardware (for each node)  Physical memory (at least 1.5 gigabyte (GB) of RAM)  An amount of swap space equal to the amount of RAM  Temporary space (at least 1 GB) available in /tmp  All servers that are used in the cluster must have the same chip architecture, for example, all 32-bit processors or all 64-bit processors • Oracle Universal Installer verifies that your server and operating system meet the listed requirements.
  • 20. Shared Storage需求 • SAN or NAS • Fiber Channel or iSCSI and Logical Unit Number(LUN) • RAID 5, 6 or 10 • At least 5.5 GB of available disk space for  The Grid home directory  The binary files for Oracle Clusterware, Oracle Automatic Storage Management (Oracle ASM) and their associated log files • At least 4 GB of available disk space for the Oracle Database home directory, or Oracle home directory. • Oracle ASM
  • 21. Network Hardware需求 • Each node must have at least two network interface cards (NIC). • One adapter is for the public network interface and the other adapter is for the private network interface (the interconnect). • For Public interface  The names must be the same for all nodes.  Support TCP/IP. • For Private interface  The names must be the same for all nodes as well.  Support the user datagram protocol (UDP).  Using high-speed network adapters and a network switch(Gigabit Ethernet or better).  Supports TCP/IP  Every node in the cluster must be able to connect to every private network interface in the cluster. • The host name of each node must conform to the RFC 952 standard, which permits alphanumeric characters. • Host names using underscores ("_") are not allowed.
  • 22. IP Address需求 • GNS virtual IP address (GNS installations only)  GNS: Grid Naming Service • Single Client Access Name (SCAN) • Virtual IP address • Public IP address • Private IP address
  • 25. Tools for Oracle Clusterware, ASM and RAC • Oracle Universal Installer (OUI) • Cluster Verification Utility (CVU)  OUI runs CVU after the Oracle Clusterware installation to verify your environment. • Oracle Enterprise Manager • SQL*Plus • Server Control (SRVCTL) • Cluster Ready Services Control (CRSCTL) • Database Configuration Assistant (DBCA) • Oracle Automatic Storage Management Configuration Assistant (ASMCA) • Oracle Automatic Storage Management Command Line utility (ASMCMD) • Listener Control (LSNRCTL)
  • 26. Q & A