3 Copyright © 2004, Oracle. All rights reserved. Creating an Oracle Database.

Slides:



Advertisements
Similar presentations
The Architecture of Oracle
Advertisements

2 Copyright © 2005, Oracle. All rights reserved. Installing the Oracle Database Software.
5 Copyright © 2005, Oracle. All rights reserved. Managing Database Storage Structures.
1 Copyright © 2008, Oracle. All rights reserved. Database Architecture and ASM.
Acknowledgments Byron Bush, Scott S. Hilpert and Lee, JeongKyu
Overview of Database Administrator (DBA) Tools
Oracle9i Database Administrator: Implementation and Administration 1 Chapter 2 Overview of Database Administrator (DBA) Tools.
Oracle Architecture. Instances and Databases (1/2)
Page Footer Keed Education Oracle Database Administration Basic Copyright 2009 Keed Education BV Version Concept.
INTRODUCTION TO ORACLE DATABASE ADMINISTRATION Lynnwood Brown System Managers LLC Introduction – Lecture 1 Copyright System Managers LLC 2007 all rights.
15 Copyright © 2004, Oracle. All rights reserved. Monitoring and Managing Memory.
1 - Oracle Server Architecture Overview
Harvard University Oracle Database Administration Session 2 System Level.
Oracle Architectural Components
A Guide to Oracle9i1 Introduction to Oracle9i Database Administration Chapter 11.
Oracle Architecture. Database instance When a database is started the current state of the database is given by the data files, a set of background (BG)
1 Copyright © 2005, Oracle. All rights reserved. Introduction.
1 Copyright © 2009, Oracle. All rights reserved. Exploring the Oracle Database Architecture.
13 Copyright © Oracle Corporation, All rights reserved. RMAN Complete Recovery.
Oracle Database Workshop 1 Presented to IBRI CAS 27-Nov-2011 By Abdullah Alkalbani.
15 Copyright © 2004, Oracle. All rights reserved. Proactive Maintenance.
Oracle Database Architecture An Oracle server: –Is a database management system that provides an open, comprehensive, integrated approach to information.
Chapter Oracle Server An Oracle Server consists of an Oracle database (stored data, control and log files.) The Server will support SQL to define.
Oracle on Windows Server Introduction to Oracle10g on Microsoft Windows Server.
Basic Oracle Architecture
CSE 781 – DATABASE MANAGEMENT SYSTEMS Introduction To Oracle 10g Rajika Tandon.
1 Oracle Architectural Components. 1-2 Objectives Listing the structures involved in connecting a user to an Oracle server Listing the stages in processing.
Copyright  Oracle Corporation, All rights reserved. 1 Oracle Architectural Components.
Oracle Tuning Ashok Kapur Hawkeye Technology, Inc.
Copyright © Oracle Corporation, All rights reserved. 1 Oracle Architectural Components.
An Oracle server:  Is a database management system that provides an open, comprehensive, integrated approach to information management.  Consists.
Backup and Recovery Overview Supinfo Oracle Lab. 6.
Anton TopurovIT-DB 23 April 2013 Introduction to Oracle2.
Introduction to Oracle. Oracle History 1979 Oracle Release client/server relational database 1989 Oracle Oracle 8 (object relational) 1999.
Outline Introduction to Oracle Memory Structures SGA, PGA, SCA The Specifics of the System Global Area (SGA) Structures Overview of Program Global Areas.
Process Architecture Process Architecture - A portion of a program that can run independently of and concurrently with other portions of the program. Some.
1 Copyright © 2005, Oracle. All rights reserved. Introduction.
6 Copyright © 2007, Oracle. All rights reserved. Managing Database Storage Structures.
11 Copyright © 2006, Oracle. All rights reserved. Checkpoint and Redo Tuning.
INTRODUCTION TO ORACLE DATABASE ADMINISTRATION Lynnwood Brown President System Managers LLC Introduction – Lecture 1 Copyright System Managers LLC 2003.
Instance and Media Recovery Structures Supinfo Oracle Lab. 7.
10 Copyright © Oracle Corporation, All rights reserved. User-Managed Backups.
Chapter 1Oracle9i DBA II: Backup/Recovery and Network Administration 1 Chapter 1 Backup and Recovery Overview MSCD642 Backup and Recovery.
3 Copyright © 2005, Oracle. All rights reserved. Creating an Oracle Database.
12 Copyright © Oracle Corporation, All rights reserved. User-Managed Complete Recovery.
Oracle Architecture - Structure. Oracle Architecture - Structure The Oracle Server architecture 1. Structures are well-defined objects that store the.
8 Copyright © 2007, Oracle. All rights reserved. Using RMAN to Duplicate a Database.
7 Copyright © Oracle Corporation, All rights reserved. Instance and Media Recovery Structures.
14 Copyright © 2005, Oracle. All rights reserved. Backup and Recovery Concepts.
Physical Database Structure .
6 Copyright © Oracle Corporation, All rights reserved. Backup and Recovery Overview.
3 Copyright © 2004, Oracle. All rights reserved. Database Architecture Comparison.
1 Copyright © 2006, Oracle. All rights reserved. Introduction.
9 Copyright © 2004, Oracle. All rights reserved. Incomplete Recovery.
6 Copyright © 2005, Oracle. All rights reserved. Managing Database Storage Structures.
14 Copyright © 2007, Oracle. All rights reserved. Backup and Recovery Concepts.
4 Copyright © 2004, Oracle. All rights reserved. Managing the Oracle Instance.
5 Copyright © 2005, Oracle. All rights reserved. Managing the Oracle Instance.
Oracle Database Architectural Components
1 Copyright © 2005, Oracle. All rights reserved. Oracle Database Administration: Overview.
10 Copyright © 2007, Oracle. All rights reserved. Managing Undo Data.
Instance and Media Recovery Structures
Introduction To Oracle 10g
Introduction.
Oracle Architectural Components
Index Index.
PL/SQL Dynamic SQL and Oracle Architecture.
Database administration
Presentation transcript:

3 Copyright © 2004, Oracle. All rights reserved. Creating an Oracle Database

3-2 Copyright © 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: Describe the Oracle database architecture Understand the instance architecture Use the management framework Use DBCA to –Create a database –Configure a database –Drop a database –Manage templates

3-3 Copyright © 2004, Oracle. All rights reserved. Database Architecture Data filesOnline redo log files Password fileParameter file Archive log files Control files

3-4 Copyright © 2004, Oracle. All rights reserved. Exploring the Storage Structure Click on the links to view detailed information

3-5 Copyright © 2004, Oracle. All rights reserved. Control Files Contain physical database structure information Multiplexed to protect against loss Required to start the instance Control files

3-6 Copyright © 2004, Oracle. All rights reserved. Redo Log Files Record changes to the database Multiplex to protect against loss Redo log buffer Log writer LGWR Group 1 Group 2 Group 3

3-7 Copyright © 2004, Oracle. All rights reserved. Tablespaces and Datafiles Tablespaces consist of one or more data files Data files belong to only one tablespace USERS Tablespace Data file 1 Data file 2

3-8 Copyright © 2004, Oracle. All rights reserved. Segments, Extents, and Blocks Segments exist within a tablespace. Segments are made of a collection of extents. Extents are a collection of data blocks. Data blocks are mapped to OS blocks. SegmentExtentsData blocks OS blocks

3-9 Copyright © 2004, Oracle. All rights reserved. Oracle Instance Management System Monitor SMON Database Writer DBW0 Log Writer LGWR Process Monitor PMON Archiver ARC0 SGA Java Pool Shared PoolLarge PoolStreams Pool Database Buffer Cache Redo Log Buffer Check point CKPT

3-10 Copyright © 2004, Oracle. All rights reserved. Oracle Memory Structures Java Pool Database Buffer Cache Redo Log Buffer Shared Pool Large Pool SGA Streams Pool Server Process 1 PGA Server Process 2 PGA Back- ground Process PGA

3-11 Copyright © 2004, Oracle. All rights reserved. Oracle Memory Structures Full Notes Page

3-12 Copyright © 2004, Oracle. All rights reserved. Oracle Processes System Monitor SMON Database Writer DBWn Check point CKPT Log Writer LGWR Process Monitor PMON Archiver ARCn Server Process Server Process Server Process Server Process System Global Area SGA Background Processes

3-13 Copyright © 2004, Oracle. All rights reserved. Data Dictionary

3-14 Copyright © 2004, Oracle. All rights reserved. Database Control Database control

3-15 Copyright © 2004, Oracle. All rights reserved. Grid Control Grid control Management server Management repository Database control Database OS/third-party application Application server Application server control Managed targets Agent

3-16 Copyright © 2004, Oracle. All rights reserved. Database Configuration Assistant (DBCA) Overview

3-17 Copyright © 2004, Oracle. All rights reserved. Creating a Database

3-18 Copyright © 2004, Oracle. All rights reserved. Database Identification

3-19 Copyright © 2004, Oracle. All rights reserved. Management Options

3-20 Copyright © 2004, Oracle. All rights reserved. Passwords and Storage

3-21 Copyright © 2004, Oracle. All rights reserved. File Locations and Backup Recovery

3-22 Copyright © 2004, Oracle. All rights reserved. File Location Variables

3-23 Copyright © 2004, Oracle. All rights reserved. Content and Initialization Parameters

3-24 Copyright © 2004, Oracle. All rights reserved. Content and Initialization Parameters Full Notes Page

3-25 Copyright © 2004, Oracle. All rights reserved. Database Storage

3-26 Copyright © 2004, Oracle. All rights reserved. Creation Options and Create

3-27 Copyright © 2004, Oracle. All rights reserved. Other Actions with DBCA

3-28 Copyright © 2004, Oracle. All rights reserved. Summary In this lesson, you should have learned how to: Describe the Oracle database architecture Understand the instance architecture Use the management framework Use DBCA to –Create a database –Configure a database –Drop a database –Manage templates

3-29 Copyright © 2004, Oracle. All rights reserved. Practice 3: Creating an Oracle Database This practice covers creating an Oracle database by using DBCA.

3-30 Copyright © 2004, Oracle. All rights reserved. Practice 3 - Creating an Oracle Database Full Notes Page